* print-tree.c (print_node): Don't print "regdecl" when bit doesn't
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 2 Jun 2001 10:56:44 +0000 (10:56 +0000)
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 2 Jun 2001 10:56:44 +0000 (10:56 +0000)
mean that; use proper names instead.
Print DECL_NO_STATIC_CHAIN.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42795 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/print-tree.c

index 795c2ba..77305ee 100644 (file)
@@ -1,5 +1,9 @@
 Sat Jun  2 06:53:50 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
 
+       * print-tree.c (print_node): Don't print "regdecl" when bit doesn't
+       mean that; use proper names instead.
+       Print DECL_NO_STATIC_CHAIN.
+
        * except.c (expand_builtin_frob_return_addr): Add missing call
        to convert_memory_address #ifdef POINTERS_EXTEND_UNSIGNED.
        (expand_builtin_eh_return): Likewise.
index 54a598e..c1f492d 100644 (file)
@@ -325,7 +325,9 @@ print_node (file, prefix, node, indent)
        fputs (" common", file);
       if (DECL_EXTERNAL (node))
        fputs (" external", file);
-      if (DECL_REGISTER (node))
+      if (DECL_REGISTER (node) && TREE_CODE (node) != FIELD_DECL
+         && TREE_CODE (node) != FUNCTION_DECL
+         && TREE_CODE (node) != LABEL_DECL)
        fputs (" regdecl", file);
       if (DECL_NONLOCAL (node))
        fputs (" nonlocal", file);
@@ -339,6 +341,8 @@ print_node (file, prefix, node, indent)
        fputs (" built-in", file);
       if (TREE_CODE (node) == FUNCTION_DECL && DECL_BUILT_IN_NONANSI (node))
        fputs (" built-in-nonansi", file);
+      if (TREE_CODE (node) == FUNCTION_DECL && DECL_NO_STATIC_CHAIN (node))
+       fputs (" no-static-chain", file);
 
       if (TREE_CODE (node) == FIELD_DECL && DECL_PACKED (node))
        fputs (" packed", file);
@@ -349,6 +353,8 @@ print_node (file, prefix, node, indent)
 
       if (TREE_CODE (node) == LABEL_DECL && DECL_TOO_LATE (node))
        fputs (" too-late", file);
+      if (TREE_CODE (node) == LABEL_DECL && DECL_ERROR_ISSUED (node))
+       fputs (" error-issued", file);
 
       if (TREE_CODE (node) == VAR_DECL && DECL_IN_TEXT_SECTION (node))
        fputs (" in-text-section", file);