diff options
author | Jeffrey Oldham <oldham@codesourcery.com> | 2001-03-12 22:22:54 +0000 |
---|---|---|
committer | Jeffrey D. Oldham <oldham@gcc.gnu.org> | 2001-03-12 22:22:54 +0000 |
commit | a84efb51f78ec2224091306024e5e52a3563e070 (patch) | |
tree | beec1cc684380818416b44e8858e5c952f724134 /gcc/print-tree.c | |
parent | 52e8d2b2a0b3dd1a1e79f786817ffae3e09b721e (diff) | |
download | gcc-a84efb51f78ec2224091306024e5e52a3563e070.zip gcc-a84efb51f78ec2224091306024e5e52a3563e070.tar.gz gcc-a84efb51f78ec2224091306024e5e52a3563e070.tar.bz2 |
emit-rtl.c (remove_unnecessary_notes): Reverse Richard Kenner's 2001-02-24 which broke building the Java library.
2001-03-12 Jeffrey Oldham <oldham@codesourcery.com>
* emit-rtl.c (remove_unnecessary_notes): Reverse Richard Kenner's
2001-02-24 which broke building the Java library.
* function.c (identify_blocks): Likewise.
(all_blocks): Likewise.
* integrate.c (integrate_decl_tree): Likewise.
* print-tree.c (print_node): Likewise.
* tree.h (BLOCK_NUMBER): Likewise.
(struct tree_block): Likewise.
From-SVN: r40431
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r-- | gcc/print-tree.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c index 7e49ee0..3bbea3f 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -584,14 +584,6 @@ print_node (file, prefix, node, indent) break; case 'b': - if (BLOCK_ABSTRACT (node)) - fprintf (file, " abstract"); - if (BLOCK_HANDLER_BLOCK (node)) - fprintf (file, " handler-block"); - if (BLOCK_DEAD (node)) - fprintf (file, " dead"); - fprintf (file, " block-number %d", BLOCK_NUMBER (node)); - print_node (file, "vars", BLOCK_VARS (node), indent + 4); print_node (file, "supercontext", BLOCK_SUPERCONTEXT (node), indent + 4); print_node (file, "subblocks", BLOCK_SUBBLOCKS (node), indent + 4); |