* print-tree.c (print_node): Print DECL_NONADDRESSABLE_P.
From-SVN: r40576
This commit is contained in:
parent
c6997b28dc
commit
6732576cfa
@ -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
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user