aboutsummaryrefslogtreecommitdiff
path: root/gcc/integrate.c
diff options
context:
space:
mode:
authorJeffrey Oldham <oldham@codesourcery.com>2001-03-12 22:22:54 +0000
committerJeffrey D. Oldham <oldham@gcc.gnu.org>2001-03-12 22:22:54 +0000
commita84efb51f78ec2224091306024e5e52a3563e070 (patch)
treebeec1cc684380818416b44e8858e5c952f724134 /gcc/integrate.c
parent52e8d2b2a0b3dd1a1e79f786817ffae3e09b721e (diff)
downloadgcc-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/integrate.c')
-rw-r--r--gcc/integrate.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c
index 23f3590..270a9c5 100644
--- a/gcc/integrate.c
+++ b/gcc/integrate.c
@@ -1684,12 +1684,11 @@ integrate_decl_tree (let, map)
next = &BLOCK_SUBBLOCKS (new_block);
for (t = BLOCK_SUBBLOCKS (let); t; t = BLOCK_CHAIN (t))
- if (!BLOCK_DEAD (t))
- {
- *next = integrate_decl_tree (t, map);
- BLOCK_SUPERCONTEXT (*next) = new_block;
- next = &BLOCK_CHAIN (*next);
- }
+ {
+ *next = integrate_decl_tree (t, map);
+ BLOCK_SUPERCONTEXT (*next) = new_block;
+ next = &BLOCK_CHAIN (*next);
+ }
TREE_USED (new_block) = TREE_USED (let);
BLOCK_ABSTRACT_ORIGIN (new_block) = let;