* c-dump.c (dequeue_and_dump): Don't look at DECL_ASSEMBLER_NAME
if it is not set.
From-SVN: r41788
+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
/* 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. */