This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[BC] Patch: FYI: actually verify
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 01 Nov 2004 17:38:46 -0700
- Subject: [BC] Patch: FYI: actually verify
- Reply-to: tromey at redhat dot com
I'm checking this in on the BC branch.
I noticed last week that the verifier on the BC branch was never
actually run.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
* link.cc (wait_for_state): Call verify_class.
Index: link.cc
===================================================================
RCS file: /cvs/gcc/gcc/libjava/Attic/link.cc,v
retrieving revision 1.1.2.7
diff -u -r1.1.2.7 link.cc
--- link.cc 27 Oct 2004 15:58:33 -0000 1.1.2.7
+++ link.cc 2 Nov 2004 00:37:17 -0000
@@ -1657,6 +1657,8 @@
if (state >= JV_STATE_LINKED && klass->state < JV_STATE_LINKED)
{
+ verify_class (klass);
+
ensure_class_linked (klass);
link_exception_table (klass);
link_symbol_table (klass);