From 506f531e133d9ea9064eb2c6d7f5d0efb35c6cd4 Mon Sep 17 00:00:00 2001 From: kenner Date: Fri, 6 May 1994 22:31:50 +0000 Subject: (print_node): Print attributes. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@7255 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/print-tree.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gcc/print-tree.c') diff --git a/gcc/print-tree.c b/gcc/print-tree.c index a638a4905cd..9c8fbcc0ce1 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -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 -- cgit v1.2.1