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

From-SVN: r40576
This commit is contained in:
Richard Kenner 2001-03-17 16:52:05 +00:00 committed by Richard Kenner
parent c6997b28dc
commit 6732576cfa
2 changed files with 6 additions and 0 deletions

View 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> 2001-03-17 David Billinghurst <David.Billinghurst@riotinto.com>
* config/i386/xm-cygwin.h: Include <sys/cygwin.h. Remove unused * config/i386/xm-cygwin.h: Include <sys/cygwin.h. Remove unused

View File

@ -344,6 +344,8 @@ print_node (file, prefix, node, indent)
fputs (" packed", file); fputs (" packed", file);
if (TREE_CODE (node) == FIELD_DECL && DECL_BIT_FIELD (node)) if (TREE_CODE (node) == FIELD_DECL && DECL_BIT_FIELD (node))
fputs (" bit-field", file); 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)) if (TREE_CODE (node) == LABEL_DECL && DECL_TOO_LATE (node))
fputs (" too-late", file); fputs (" too-late", file);