Commit 21366e6f by Tom Tromey Committed by Tom Tromey

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
parent 7d5f33bc
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
......
......@@ -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;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment