re PR bootstrap/80531 (RC1 bootstrap comparison failure)

PR bootstrap/80531
	* cgraph.h (symtab_node::debug_symtab): No longer inline.
	* symtab.c (symtab_node::debug_symtab): Move definition here.

From-SVN: r247368
This commit is contained in:
Jakub Jelinek 2017-04-28 13:42:14 +02:00 committed by Jakub Jelinek
parent 9a4ea63e40
commit 82052c2822
3 changed files with 15 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2017-04-28 Jakub Jelinek <jakub@redhat.com>
PR bootstrap/80531
* cgraph.h (symtab_node::debug_symtab): No longer inline.
* symtab.c (symtab_node::debug_symtab): Move definition here.
2017-04-27 Richard Earnshaw <rearnsha@arm.com>
PR target/80530

View File

@ -415,10 +415,7 @@ public:
static void dump_table (FILE *);
/* Dump symbol table to stderr. */
static inline DEBUG_FUNCTION void debug_symtab (void)
{
dump_table (stderr);
}
static void DEBUG_FUNCTION debug_symtab (void);
/* Verify symbol table for internal consistency. */
static DEBUG_FUNCTION void verify_symtab_nodes (void);

View File

@ -924,6 +924,14 @@ 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. */