aboutsummaryrefslogtreecommitdiff
path: root/gcc/print-tree.c
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1996-12-30 11:42:59 -0800
committerJim Wilson <wilson@gcc.gnu.org>1996-12-30 11:42:59 -0800
commita759633809c1fdc23394453c81597b627c95fcd3 (patch)
treebe2b5312b40c870b0c125e0214412fed6b39e5ef /gcc/print-tree.c
parentf7da60971fb6e0f818d91fc65aca0c7f4a3e2443 (diff)
downloadgcc-a759633809c1fdc23394453c81597b627c95fcd3.zip
gcc-a759633809c1fdc23394453c81597b627c95fcd3.tar.gz
gcc-a759633809c1fdc23394453c81597b627c95fcd3.tar.bz2
(print_node): Don't try to print nonexistent
TYPE_ATTRIBUTES field of a decl node. From-SVN: r13344
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 d7b9fdd..4949aec 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));