diff options
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r-- | gcc/cgraphunit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 863b81e..4a35118 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -964,7 +964,7 @@ analyze_functions (void) fprintf (cgraph_dump_file, "Trivially needed symbols:"); changed = true; if (cgraph_dump_file) - fprintf (cgraph_dump_file, " %s", symtab_node_asm_name (node)); + fprintf (cgraph_dump_file, " %s", node->asm_name ()); if (!changed && cgraph_dump_file) fprintf (cgraph_dump_file, "\n"); } @@ -1077,7 +1077,7 @@ analyze_functions (void) if (!node->aux && !referred_to_p (node)) { if (cgraph_dump_file) - fprintf (cgraph_dump_file, " %s", symtab_node_name (node)); + fprintf (cgraph_dump_file, " %s", node->name ()); symtab_remove_node (node); continue; } |