aboutsummaryrefslogtreecommitdiff
path: root/libjava/include
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>2001-02-23 20:15:31 -0800
committerPer Bothner <bothner@gcc.gnu.org>2001-02-23 20:15:31 -0800
commitf9edddabe7c6ec77d525d7e4008b946ce4a1e2f8 (patch)
tree8f057d79ffefb9eb0ef8f70de17c0a8db0af7b3c /libjava/include
parent5ea1bc0e465cdbe8e2b49b8d1aff902b32b89abe (diff)
downloadgcc-f9edddabe7c6ec77d525d7e4008b946ce4a1e2f8.zip
gcc-f9edddabe7c6ec77d525d7e4008b946ce4a1e2f8.tar.gz
gcc-f9edddabe7c6ec77d525d7e4008b946ce4a1e2f8.tar.bz2
Change to sometimes include class name in ClassFormatError message.
From-SVN: r40030
Diffstat (limited to 'libjava/include')
-rw-r--r--libjava/include/java-interp.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libjava/include/java-interp.h b/libjava/include/java-interp.h
index 59976b3..acc2eb9 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*);