aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/parse.h
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>2001-03-15 22:30:28 -0800
committerPer Bothner <bothner@gcc.gnu.org>2001-03-15 22:30:28 -0800
commitb16e8f08b4942c0971cf8f07ce041a882855c5fa (patch)
tree67536e58400ed7f787f84efc053a21e12fed953e /gcc/java/parse.h
parent3a2e5926e6f7b9353623b9d4aad695cc421b28d7 (diff)
downloadgcc-b16e8f08b4942c0971cf8f07ce041a882855c5fa.zip
gcc-b16e8f08b4942c0971cf8f07ce041a882855c5fa.tar.gz
gcc-b16e8f08b4942c0971cf8f07ce041a882855c5fa.tar.bz2
java-tree.h (BLOCK_IS_IMPLICIT): New flag.
* 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. From-SVN: r40542
Diffstat (limited to 'gcc/java/parse.h')
-rw-r--r--gcc/java/parse.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/java/parse.h b/gcc/java/parse.h
index 336c2fd..8a7bae5 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)