diff options
author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-07 23:44:12 +0000 |
---|---|---|
committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-07 23:44:12 +0000 |
commit | a5dd1010e3b02d5c9b87478b4fa7f2a92d23e6d3 (patch) | |
tree | 2dc287cfd8549001b454f7bd170457d8492b5ab7 /libjava/include | |
parent | 21a26a5c7d8c9ebea377768ac64b5374fab1a99e (diff) | |
download | gcc-a5dd1010e3b02d5c9b87478b4fa7f2a92d23e6d3.tar.gz |
* include/jvm.h (namespace jcj): Declare verbose_class_flag
* java/lang/natClass.cc (gcj::verbose_class_flag): New variable.
(initializeClass): If verbose_class_flag, print message.
* gij.cc (main): Handle -verbose:class flag.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84242 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/include')
-rw-r--r-- | libjava/include/jvm.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libjava/include/jvm.h b/libjava/include/jvm.h index 398f854e783..9cc59160dda 100644 --- a/libjava/include/jvm.h +++ b/libjava/include/jvm.h @@ -238,6 +238,9 @@ namespace gcj /* Set to true by _Jv_CreateJavaVM. */ extern bool runtimeInitialized; + + /* Print out class names as they are initialized. */ + extern bool verbose_class_flag; } /* Type of pointer used as finalizer. */ |