Commit 97a6e368 by Tom Tromey Committed by Tom Tromey

verify.cc (_Jv_BytecodeVerifier::pop_jump): Removed unused variable.

	* verify.cc (_Jv_BytecodeVerifier::pop_jump): Removed unused
	variable.

From-SVN: r62980
parent 0df4ae96
2003-02-16 Tom Tromey <tromey@redhat.com>
* verify.cc (_Jv_BytecodeVerifier::pop_jump): Removed unused
variable.
2003-02-15 Michael Koch <konqueror@gmx.de>
* java/awt/datatransfer/DataFlavor.java
......
......@@ -1432,7 +1432,6 @@ private:
{
int *prev_loc = &next_verify_pc;
int npc = next_verify_pc;
bool skipped = false;
while (npc != state::NO_NEXT)
{
......@@ -1449,7 +1448,6 @@ private:
return npc;
}
skipped = true;
prev_loc = &states[npc]->next;
npc = states[npc]->next;
}
......
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