(print_node): Print attributes.
authorRichard Kenner <kenner@gcc.gnu.org>
Fri, 6 May 1994 22:31:50 +0000 (18:31 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Fri, 6 May 1994 22:31:50 +0000 (18:31 -0400)
From-SVN: r7255

gcc/print-tree.c

index a638a4905cd932a22c31edb8a8f8f497d2ab68f3..9c8fbcc0ce1acaedd04a73e445d3544be0382d37 100644 (file)
@@ -1,5 +1,5 @@
 /* Prints out tree in human readable form - GNU C-compiler
-   Copyright (C) 1990, 1991, 1993 Free Software Foundation, Inc.
+   Copyright (C) 1990, 1991, 1993, 1994 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
 
@@ -437,6 +437,8 @@ print_node (file, prefix, node, indent)
       fprintf (file, " align %d", TYPE_ALIGN (node));
       fprintf (file, " symtab %d", TYPE_SYMTAB_ADDRESS (node));
 
+      print_node (file, "attributes", TYPE_ATTRIBUTES (node), indent + 4);
+
       if (TREE_CODE (node) == ARRAY_TYPE || TREE_CODE (node) == SET_TYPE)
        print_node (file, "domain", TYPE_DOMAIN (node), indent + 4);
       else if (TREE_CODE (node) == INTEGER_TYPE