Commit 1ad784e2 by Jakub Jelinek Committed by Jakub Jelinek

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: r247367
parent d90d82e3
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-28 Richard Biener <rguenther@suse.de> 2017-04-28 Richard Biener <rguenther@suse.de>
* lto-streamer.h (LTO_major_version): Bump to 7. * lto-streamer.h (LTO_major_version): Bump to 7.
......
...@@ -415,10 +415,7 @@ public: ...@@ -415,10 +415,7 @@ public:
static void dump_table (FILE *); static void dump_table (FILE *);
/* Dump symbol table to stderr. */ /* Dump symbol table to stderr. */
static inline DEBUG_FUNCTION void debug_symtab (void) static void DEBUG_FUNCTION debug_symtab (void);
{
dump_table (stderr);
}
/* Verify symbol table for internal consistency. */ /* Verify symbol table for internal consistency. */
static DEBUG_FUNCTION void verify_symtab_nodes (void); static DEBUG_FUNCTION void verify_symtab_nodes (void);
......
...@@ -924,6 +924,14 @@ symtab_node::dump_table (FILE *f) ...@@ -924,6 +924,14 @@ symtab_node::dump_table (FILE *f)
node->dump (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 the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
Return NULL if there's no such node. */ Return NULL if there's no such node. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment