diff options
Diffstat (limited to 'gcc/cgraph.c')
-rw-r--r-- | gcc/cgraph.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/cgraph.c b/gcc/cgraph.c index ff65b86a567..fd460aa257f 100644 --- a/gcc/cgraph.c +++ b/gcc/cgraph.c @@ -1377,12 +1377,12 @@ cgraph_redirect_edge_call_stmt_to_callee (struct cgraph_edge *e) if (dump_file) fprintf (dump_file, "Expanding speculative call of %s/%i -> %s/%i count:" - HOST_WIDEST_INT_PRINT_DEC"\n", + "%"PRId64"\n", xstrdup (e->caller->name ()), e->caller->order, xstrdup (e->callee->name ()), e->callee->order, - (HOST_WIDEST_INT)e->count); + (int64_t)e->count); gcc_assert (e2->speculative); push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl)); new_stmt = gimple_ic (e->call_stmt, cgraph (ref->referred), @@ -1975,8 +1975,8 @@ dump_cgraph_node (FILE *f, struct cgraph_node *node) fprintf (f, " First run: %i\n", node->tp_first_run); fprintf (f, " Function flags:"); if (node->count) - fprintf (f, " executed "HOST_WIDEST_INT_PRINT_DEC"x", - (HOST_WIDEST_INT)node->count); + fprintf (f, " executed %"PRId64"x", + (int64_t)node->count); if (node->origin) fprintf (f, " nested in: %s", node->origin->asm_name ()); if (gimple_has_body_p (node->decl)) @@ -2027,8 +2027,8 @@ dump_cgraph_node (FILE *f, struct cgraph_node *node) fprintf (f, "%s/%i ", edge->caller->asm_name (), edge->caller->order); if (edge->count) - fprintf (f, "("HOST_WIDEST_INT_PRINT_DEC"x) ", - (HOST_WIDEST_INT)edge->count); + fprintf (f, "(%"PRId64"x) ", + (int64_t)edge->count); if (edge->frequency) fprintf (f, "(%.2f per call) ", edge->frequency / (double)CGRAPH_FREQ_BASE); @@ -2054,8 +2054,8 @@ dump_cgraph_node (FILE *f, struct cgraph_node *node) if (edge->indirect_inlining_edge) fprintf (f, "(indirect_inlining) "); if (edge->count) - fprintf (f, "("HOST_WIDEST_INT_PRINT_DEC"x) ", - (HOST_WIDEST_INT)edge->count); + fprintf (f, "(%"PRId64"x) ", + (int64_t)edge->count); if (edge->frequency) fprintf (f, "(%.2f per call) ", edge->frequency / (double)CGRAPH_FREQ_BASE); |