* print-tree.c (print_node): Print DECL_NONADDRESSABLE_P.
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>
Sat, 17 Mar 2001 16:52:05 +0000 (16:52 +0000)
committerRichard Kenner <kenner@gcc.gnu.org>
Sat, 17 Mar 2001 16:52:05 +0000 (11:52 -0500)
From-SVN: r40576

gcc/ChangeLog
gcc/print-tree.c

index ceb5c89fcb1c1c879a1f325215ce0505215a4d73..52273abaebdb61ab32f4177b7bd2cd1ab9d0db3f 100644 (file)
@@ -1,3 +1,7 @@
+Sat Mar 17 11:52:34 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
+
+       * print-tree.c (print_node): Print DECL_NONADDRESSABLE_P.
+
 2001-03-17  David Billinghurst  <David.Billinghurst@riotinto.com>
 
        * config/i386/xm-cygwin.h: Include <sys/cygwin.h.  Remove unused
index 459b55dc539fcdf5e3f90394c9a627c827e1bab8..d4a858188ade074e239fd46faa882eac31b297fe 100644 (file)
@@ -344,6 +344,8 @@ print_node (file, prefix, node, indent)
        fputs (" packed", file);
       if (TREE_CODE (node) == FIELD_DECL && DECL_BIT_FIELD (node))
        fputs (" bit-field", file);
+      if (TREE_CODE (node) == FIELD_DECL && DECL_NONADDRESSABLE_P (node))
+       fputs (" nonaddressable", file);
 
       if (TREE_CODE (node) == LABEL_DECL && DECL_TOO_LATE (node))
        fputs (" too-late", file);