This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[BC] Patch: FYI: actually verify


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);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]