aboutsummaryrefslogtreecommitdiff
path: root/gcc/print-tree.c
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>2001-03-17 16:52:05 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>2001-03-17 16:52:05 +0000
commit9dd6501e58242b8b6557bd468a01d128c4551a6e (patch)
tree2d5bfe65a12046b9f6df3bb4358db89c0bfba804 /gcc/print-tree.c
parent5d2ac02bc3f04d6515d35e2cd47608c659b95996 (diff)
* print-tree.c (print_node): Print DECL_NONADDRESSABLE_P.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40576 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r--gcc/print-tree.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c
index 459b55dc539..d4a858188ad 100644
--- a/gcc/print-tree.c
+++ b/gcc/print-tree.c
@@ -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);