This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch: FYI: small verifier cleanup
- From: Tom Tromey <tromey at redhat dot com>
- To: java-patches at gcc dot gnu dot org
- Date: 16 Feb 2003 12:24:20 -0700
- Subject: Patch: FYI: small verifier cleanup
- Reply-to: tromey at redhat dot com
I'm checking this in to 3.3 and 3.4.
This removes an unused variable from a verifier method.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
* verify.cc (_Jv_BytecodeVerifier::pop_jump): Removed unused
variable.
Index: verify.cc
===================================================================
RCS file: /cvs/gcc/gcc/libjava/verify.cc,v
retrieving revision 1.48.2.1
diff -u -r1.48.2.1 verify.cc
--- verify.cc 13 Feb 2003 23:47:54 -0000 1.48.2.1
+++ verify.cc 16 Feb 2003 19:32:06 -0000
@@ -1432,7 +1432,6 @@
{
int *prev_loc = &next_verify_pc;
int npc = next_verify_pc;
- bool skipped = false;
while (npc != state::NO_NEXT)
{
@@ -1449,7 +1448,6 @@
return npc;
}
- skipped = true;
prev_loc = &states[npc]->next;
npc = states[npc]->next;
}