diff options
author | Tom Tromey <tromey@redhat.com> | 2001-12-07 03:30:47 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2001-12-07 03:30:47 +0000 |
commit | 21366e6fe51f8e381c142bd6074f660a8839ab63 (patch) | |
tree | 9cb1dcf078294d9d7bafd7b61e718bd0bdb8f908 /libjava/verify.cc | |
parent | 7d5f33bcc10a469932f4f4646a545cc59acfda88 (diff) | |
download | gcc-21366e6fe51f8e381c142bd6074f660a8839ab63.zip gcc-21366e6fe51f8e381c142bd6074f660a8839ab63.tar.gz gcc-21366e6fe51f8e381c142bd6074f660a8839ab63.tar.bz2 |
verify.cc (_Jv_BytecodeVerifier::FLAG_JSR_TARGET): Removed.
* verify.cc (_Jv_BytecodeVerifier::FLAG_JSR_TARGET): Removed.
(_Jv_BytecodeVerifier::note_branch_target): Likewise.
From-SVN: r47745
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 c1c8fff..37935c4 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; } } |