summaryrefslogtreecommitdiff
path: root/libjava/include
diff options
context:
space:
mode:
authorbryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4>2005-05-13 01:02:39 +0000
committerbryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4>2005-05-13 01:02:39 +0000
commitab14d426a22e68d6081c0b524918c3d1b3d96f63 (patch)
tree90f2c51143a8ba2fb5311f20878ab77cfef3f642 /libjava/include
parent6e60c5852a2330b24482f8624eb2a9cd22dfed39 (diff)
downloadgcc-ab14d426a22e68d6081c0b524918c3d1b3d96f63.tar.gz
2005-05-12 Bryce McKinlay <mckinlay@redhat.com>
* 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 <aluchko@redhat.com> * gij.cc (main): Recognize '-verify', '-noverify', and '-verifyremote' 2005-05-12 Aaron Luchko <aluchko@redhat.com> * gcj.texi: Add '-verify', '-noverify', and '-verifyremote'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99646 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/include')
-rw-r--r--libjava/include/jvm.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libjava/include/jvm.h b/libjava/include/jvm.h
index 6b978f906e4..bceb291fb58 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.