diff options
Diffstat (limited to 'gcc/value-prof.c')
-rw-r--r-- | gcc/value-prof.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/value-prof.c b/gcc/value-prof.c index ad70cea..f21ff00 100644 --- a/gcc/value-prof.c +++ b/gcc/value-prof.c @@ -1224,9 +1224,9 @@ init_node_map (bool local) fprintf (dump_file, "Local profile-id %i conflict" " with nodes %s/%i %s/%i\n", n->profile_id, - cgraph_node_name (n), + n->name (), n->order, - symtab_node_name (*(symtab_node **)val), + (*(symtab_node **)val)->name (), (*(symtab_node **)val)->order); n->profile_id = (n->profile_id + 1) & 0x7fffffff; } @@ -1237,7 +1237,7 @@ init_node_map (bool local) fprintf (dump_file, "Node %s/%i has no profile-id" " (profile feedback missing?)\n", - cgraph_node_name (n), + n->name (), n->order); continue; } @@ -1248,7 +1248,7 @@ init_node_map (bool local) fprintf (dump_file, "Node %s/%i has IP profile-id %i conflict. " "Giving up.\n", - cgraph_node_name (n), + n->name (), n->order, n->profile_id); *val = NULL; @@ -1297,7 +1297,7 @@ check_ic_target (gimple call_stmt, struct cgraph_node *target) if (dump_enabled_p ()) dump_printf_loc (MSG_MISSED_OPTIMIZATION, locus, "Skipping target %s with mismatching types for icall\n", - cgraph_node_name (target)); + target->name ()); return false; } |