From f5ea88a3c84867db582caf0154a8635501c3a819 Mon Sep 17 00:00:00 2001 From: Bryce McKinlay Date: Fri, 13 May 2005 02:02:39 +0100 Subject: [multiple changes] 2005-05-12 Bryce McKinlay * include/jvm.h (gcj::verifyClasses): Declare. * link.cc (gcj::verbose_class_flag): Moved. * prims.cc (gcj::verifyClasses): Define here. (gcj::verbose_class_flag): Move definition here. (_Jv_Linker::wait_for_state): Don't call verify_class if gcj::verifyClasses is not set. * gij.cc (main): Set gcj::verifyClasses when '-noverify' is given. 2005-05-12 Aaron Luchko * gij.cc (main): Recognize '-verify', '-noverify', and '-verifyremote' 2005-05-12 Aaron Luchko * gcj.texi: Add '-verify', '-noverify', and '-verifyremote'. From-SVN: r99646 --- libjava/include/jvm.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libjava/include') diff --git a/libjava/include/jvm.h b/libjava/include/jvm.h index 6b978f9..bceb291 100644 --- a/libjava/include/jvm.h +++ b/libjava/include/jvm.h @@ -230,6 +230,9 @@ namespace gcj /* Print out class names as they are initialized. */ extern bool verbose_class_flag; + + /* When true, enable the bytecode verifier and BC-ABI verification. */ + extern bool verifyClasses; } // This class handles all aspects of class preparation and linking. -- cgit v1.1