Commit 6732576c by Richard Kenner Committed by Richard Kenner

* print-tree.c (print_node): Print DECL_NONADDRESSABLE_P.

From-SVN: r40576
parent c6997b28
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
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment