This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Print DECL_NONADDRESSABLE_P


Sat Mar 17 11:52:34 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>

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

*** print-tree.c	2001/03/15 02:50:49	1.43
--- print-tree.c	2001/03/17 13:28:01
*************** print_node (file, prefix, node, indent)
*** 345,348 ****
--- 345,350 ----
        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))


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]