diff options
author | oldham <oldham@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-12 22:22:54 +0000 |
---|---|---|
committer | oldham <oldham@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-12 22:22:54 +0000 |
commit | 874a9b8d2a144a2cc1ead358756b70d5ee818e38 (patch) | |
tree | beec1cc684380818416b44e8858e5c952f724134 /gcc/tree.h | |
parent | fda7870b052629200a4cb854322d27be3af66fa6 (diff) | |
download | gcc-874a9b8d2a144a2cc1ead358756b70d5ee818e38.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40431 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index d6dde70b563..4ec4321663a 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -830,10 +830,6 @@ struct tree_exp listed in the BLOCK_VARS slot. */ #define BLOCK_HANDLER_BLOCK(NODE) (BLOCK_CHECK (NODE)->block.handler_block_flag) -/* Nonzero means the block was deleted as dead and should not be copied - when a function is inlined. */ -#define BLOCK_DEAD(NODE) (BLOCK_CHECK (NODE)->block.dead_flag) - /* An index number for this block. These values are not guaranteed to be unique across functions -- whether or not they are depends on the debugging output format in use. */ @@ -845,8 +841,7 @@ struct tree_block unsigned handler_block_flag : 1; unsigned abstract_flag : 1; - unsigned dead_flag : 1; - unsigned block_num : 29; + unsigned block_num : 30; union tree_node *vars; union tree_node *subblocks; |