diff options
Diffstat (limited to 'gcc/symtab.c')
-rw-r--r-- | gcc/symtab.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/gcc/symtab.c b/gcc/symtab.c index 6c41dcf..13dca7f 100644 --- a/gcc/symtab.c +++ b/gcc/symtab.c @@ -913,10 +913,8 @@ symtab_node::dump (FILE *f) vnode->dump (f); } -/* Dump symbol table to F. */ - void -symtab_node::dump_table (FILE *f) +symbol_table::dump (FILE *f) { symtab_node *node; fprintf (f, "Symbol table:\n\n"); @@ -924,15 +922,6 @@ symtab_node::dump_table (FILE *f) node->dump (f); } -/* Dump symbol table to stderr. */ - -DEBUG_FUNCTION void -symtab_node::debug_symtab (void) -{ - dump_table (stderr); -} - - /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME. Return NULL if there's no such node. */ |