diff options
author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-16 06:30:28 +0000 |
---|---|---|
committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-16 06:30:28 +0000 |
commit | 2a3fc102ae090ac3ca263d54d25e8b98dad8bdbd (patch) | |
tree | 67536e58400ed7f787f84efc053a21e12fed953e /gcc/java/parse.h | |
parent | 869705e1ef9d6a40e9ef63b4b8c3f76eb89f0648 (diff) | |
download | gcc-2a3fc102ae090ac3ca263d54d25e8b98dad8bdbd.tar.gz |
* java-tree.h (BLOCK_IS_IMPLICIT): New flag.
* parse.h (BLOCK_EXPR_ORIGIN): Removed macro.
* parse.y (declare_local_variables, maybe_absorb_scoping_blocks):
Use BLOCK_IS_IMPLICIT rather than BLOCK_EXPR_ORIGIN.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40542 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/parse.h')
-rw-r--r-- | gcc/java/parse.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/java/parse.h b/gcc/java/parse.h index 336c2fdbc9d..8a7bae56a1b 100644 --- a/gcc/java/parse.h +++ b/gcc/java/parse.h @@ -603,10 +603,6 @@ typedef struct _jdeplist { #define GET_CURRENT_BLOCK(F) ((F) ? DECL_FUNCTION_BODY ((F)) : \ current_static_block) -/* For an artificial BLOCK (created to house a local variable declaration not - at the start of an existing block), the parent block; otherwise NULL. */ -#define BLOCK_EXPR_ORIGIN(NODE) BLOCK_ABSTRACT_ORIGIN(NODE) - /* Merge an other line to the source line number of a decl. Used to remember function's end. */ #define DECL_SOURCE_LINE_MERGE(DECL,NO) DECL_SOURCE_LINE(DECL) |= (NO << 16) |