diff options
author | Per Bothner <per@bothner.com> | 2002-04-24 15:14:59 -0700 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 2002-04-24 15:14:59 -0700 |
commit | 67f0a6bf0132909f392c07fa5eab27b3e8c6e483 (patch) | |
tree | b747d60d20c6eedb8be89aac0bc1bdcbdcdafaa8 /gcc/java/java-tree.h | |
parent | 5e039e6b12f5bc2315fc0824b3d8648463fa3cc8 (diff) | |
download | gcc-67f0a6bf0132909f392c07fa5eab27b3e8c6e483.zip gcc-67f0a6bf0132909f392c07fa5eab27b3e8c6e483.tar.gz gcc-67f0a6bf0132909f392c07fa5eab27b3e8c6e483.tar.bz2 |
expr.c (PRE_JSR): Call NOTE_LABEL for return address.
* expr.c (PRE_JSR): Call NOTE_LABEL for return address.
* java-tree.h (BCODE_RETURN_TARGET): Removed - never set.
(BCODE_TARGET): Remove BCODE_RETURN_TARGET.
From-SVN: r52735
Diffstat (limited to 'gcc/java/java-tree.h')
-rw-r--r-- | gcc/java/java-tree.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/gcc/java/java-tree.h b/gcc/java/java-tree.h index 84a2afb..d6d698c 100644 --- a/gcc/java/java-tree.h +++ b/gcc/java/java-tree.h @@ -1343,20 +1343,14 @@ extern char *instruction_bits; /* True iff the byte is the start of an instruction. */ #define BCODE_INSTRUCTION_START 1 -/* True iff there is a jump to this location. */ +/* True iff there is a jump or a return to this location. */ #define BCODE_JUMP_TARGET 2 -/* True iff there is a return to this location. - (I.e. the preceding instruction was a call.) */ -#define BCODE_RETURN_TARGET 4 - /* True iff this is the start of an exception handler. */ #define BCODE_EXCEPTION_TARGET 16 /* True iff there is a jump to this location (and it needs a label). */ -#define BCODE_TARGET \ - (BCODE_JUMP_TARGET|BCODE_RETURN_TARGET \ - | BCODE_EXCEPTION_TARGET) +#define BCODE_TARGET (BCODE_JUMP_TARGET| BCODE_EXCEPTION_TARGET) /* True iff there is an entry in the linenumber table for this location. */ #define BCODE_HAS_LINENUMBER 32 |