diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1996-12-30 11:42:59 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1996-12-30 11:42:59 -0800 |
commit | a759633809c1fdc23394453c81597b627c95fcd3 (patch) | |
tree | be2b5312b40c870b0c125e0214412fed6b39e5ef /gcc/print-tree.c | |
parent | f7da60971fb6e0f818d91fc65aca0c7f4a3e2443 (diff) | |
download | gcc-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.c | 1 |
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)); |