diff options
author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-24 04:15:31 +0000 |
---|---|---|
committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-24 04:15:31 +0000 |
commit | d440ac7c53caef3f32835aac6a7dafe8c166c00a (patch) | |
tree | 8f057d79ffefb9eb0ef8f70de17c0a8db0af7b3c /libjava/include/java-interp.h | |
parent | a194077bf91f85c40331e00ec89f691becb6c2d3 (diff) | |
download | gcc-d440ac7c53caef3f32835aac6a7dafe8c166c00a.tar.gz |
Change to sometimes include class name in ClassFormatError message.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40030 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/include/java-interp.h')
-rw-r--r-- | libjava/include/java-interp.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libjava/include/java-interp.h b/libjava/include/java-interp.h index 59976b31acf..acc2eb9d5b7 100644 --- a/libjava/include/java-interp.h +++ b/libjava/include/java-interp.h @@ -33,11 +33,11 @@ _Jv_IsInterpretedClass (jclass c) struct _Jv_ResolvedMethod; -void _Jv_VerifyFieldSignature (_Jv_Utf8Const*sig); -void _Jv_VerifyMethodSignature (_Jv_Utf8Const*sig); -void _Jv_VerifyClassName (unsigned char* ptr, _Jv_ushort length); -void _Jv_VerifyClassName (_Jv_Utf8Const *name); -void _Jv_VerifyIdentifier (_Jv_Utf8Const *); +bool _Jv_VerifyFieldSignature (_Jv_Utf8Const*sig); +bool _Jv_VerifyMethodSignature (_Jv_Utf8Const*sig); +bool _Jv_VerifyClassName (unsigned char* ptr, _Jv_ushort length); +bool _Jv_VerifyClassName (_Jv_Utf8Const *name); +bool _Jv_VerifyIdentifier (_Jv_Utf8Const *); bool _Jv_ClassNameSamePackage (_Jv_Utf8Const *name1, _Jv_Utf8Const *name2); void _Jv_DefineClass (jclass, jbyteArray, jint, jint); void _Jv_ResolveField (_Jv_Field *, java::lang::ClassLoader*); |