diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-07 03:30:47 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-07 03:30:47 +0000 |
commit | 342908a60f3ab8683db001fca1c9d4036d2ae2cf (patch) | |
tree | 9cb1dcf078294d9d7bafd7b61e718bd0bdb8f908 /libjava/verify.cc | |
parent | 0ef398b059129fe0cc4764263ca63ce990529a34 (diff) | |
download | gcc-342908a60f3ab8683db001fca1c9d4036d2ae2cf.tar.gz |
* verify.cc (_Jv_BytecodeVerifier::FLAG_JSR_TARGET): Removed.
(_Jv_BytecodeVerifier::note_branch_target): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47745 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/verify.cc')
-rw-r--r-- | libjava/verify.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libjava/verify.cc b/libjava/verify.cc index c1c8fff3ee8..37935c4eca2 100644 --- a/libjava/verify.cc +++ b/libjava/verify.cc @@ -64,7 +64,6 @@ private: static const int FLAG_INSN_START = 1; static const int FLAG_BRANCH_TARGET = 2; - static const int FLAG_JSR_TARGET = 4; struct state; struct type; @@ -1265,7 +1264,6 @@ private: info->pc = PC; info->next = jsr_ptrs[pc]; jsr_ptrs[pc] = info; - flags[pc] |= FLAG_JSR_TARGET; } } |