summaryrefslogtreecommitdiff
path: root/gcc/print-tree.c
diff options
context:
space:
mode:
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>1996-12-30 19:42:59 +0000
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>1996-12-30 19:42:59 +0000
commit0190fa02c3c469fac6bd5a494f896e930bbe0e9c (patch)
treebe2b5312b40c870b0c125e0214412fed6b39e5ef /gcc/print-tree.c
parenteaf26d834d99a700d307fbdf98752f1e81fe6134 (diff)
downloadgcc-0190fa02c3c469fac6bd5a494f896e930bbe0e9c.tar.gz
(print_node): Don't try to print nonexistent
TYPE_ATTRIBUTES field of a decl node. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@13344 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r--gcc/print-tree.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c
index d7b9fddc365..4949aec117a 100644
--- a/gcc/print-tree.c
+++ b/gcc/print-tree.c
@@ -397,7 +397,6 @@ print_node (file, prefix, node, indent)
DECL_SOURCE_FILE (node), DECL_SOURCE_LINE (node));
print_node (file, "size", DECL_SIZE (node), indent + 4);
- print_node (file, "attributes", TYPE_ATTRIBUTES (node), indent + 4);
indent_to (file, indent + 3);
if (TREE_CODE (node) != FUNCTION_DECL)
fprintf (file, " align %d", DECL_ALIGN (node));