Commit c64539a8 by Mark Mitchell Committed by Nathan Sidwell

c-dump.c (dequeue_and_dump): Don't look at DECL_ASSEMBLER_NAME if it is not set.

	* c-dump.c (dequeue_and_dump): Don't look at DECL_ASSEMBLER_NAME
	if it is not set.

From-SVN: r41788
parent 2ea10770
2001-05-03 Mark Mitchell <mark@codesourcery.com>
* c-dump.c (dequeue_and_dump): Don't look at DECL_ASSEMBLER_NAME
if it is not set.
2001-05-03 Alexandre Oliva <aoliva@redhat.com>
* config/mn10300/mn10300.h (LINK_SPEC): Pass --relax to the
......
......@@ -325,7 +325,7 @@ dequeue_and_dump (di)
/* All declarations have names. */
if (DECL_NAME (t))
dump_child ("name", DECL_NAME (t));
if (DECL_ASSEMBLER_NAME (t)
if (DECL_ASSEMBLER_NAME_SET_P (t)
&& DECL_ASSEMBLER_NAME (t) != DECL_NAME (t))
dump_child ("mngl", DECL_ASSEMBLER_NAME (t));
/* And types. */
......
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