]> gcc.gnu.org Git - gcc.git/commitdiff
c-dump.c (dequeue_and_dump): Don't look at DECL_ASSEMBLER_NAME if it is not set.
authorMark Mitchell <mark@codesourcery.com>
Thu, 3 May 2001 15:41:13 +0000 (15:41 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Thu, 3 May 2001 15:41:13 +0000 (15:41 +0000)
* c-dump.c (dequeue_and_dump): Don't look at DECL_ASSEMBLER_NAME
if it is not set.

From-SVN: r41788

gcc/ChangeLog
gcc/c-dump.c

index a9e32b2432d0a8917cd310a5881d3021dd715242..fecca4fc1e7fc09577229f21e10000ed158897af 100644 (file)
@@ -1,3 +1,8 @@
+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
index 96a2548b5712ffc6224fdfeceb729d223a765e27..08f6f02902c4868e15cd7479d055d0c25143a8fa 100644 (file)
@@ -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.  */
This page took 0.076697 seconds and 5 git commands to generate.