(_Jv_BytecodeVerifier::note_branch_target): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47745
138bc75d-0d04-0410-961f-
82ee72b054a4
2001-12-06 Tom Tromey <tromey@redhat.com>
+ * verify.cc (_Jv_BytecodeVerifier::FLAG_JSR_TARGET): Removed.
+ (_Jv_BytecodeVerifier::note_branch_target): Likewise.
+
* verify.cc (_Jv_BytecodeVerifier::type_val): Added
unused_by_subroutine_type.
(_Jv_BytecodeVerifier::type::merge): Handle
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;
info->pc = PC;
info->next = jsr_ptrs[pc];
jsr_ptrs[pc] = info;
- flags[pc] |= FLAG_JSR_TARGET;
}
}