diff options
author | Andrew Haley <aph@redhat.com> | 2007-04-02 16:36:52 +0000 |
---|---|---|
committer | Andrew Haley <aph@gcc.gnu.org> | 2007-04-02 16:36:52 +0000 |
commit | a0036853d2b6260c0a322da8d411dcebd3ac4f9e (patch) | |
tree | 826918a6ab1985e623a1617586fc734818568de0 /libjava/java/lang/VMCompiler.h | |
parent | e6c45b1e3435efa993309f69654ac5411327d755 (diff) | |
download | gcc-a0036853d2b6260c0a322da8d411dcebd3ac4f9e.zip gcc-a0036853d2b6260c0a322da8d411dcebd3ac4f9e.tar.gz gcc-a0036853d2b6260c0a322da8d411dcebd3ac4f9e.tar.bz2 |
natVMProxy.cc (run_proxy): Use _Jv_LookupProxyMethod to find the Method.
2007-04-02 Andrew Haley <aph@redhat.com>
* java/lang/reflect/natVMProxy.cc (run_proxy): Use
_Jv_LookupProxyMethod to find the Method.
If parameter_types->length == 0, pass a null paramameter list,
not a zero-length parameter list.
* java/lang/natClass.cc (_Jv_LookupProxyMethod): New function.
* java/lang/Class.h (_Jv_LookupProxyMethod): Declare.
From-SVN: r123431
Diffstat (limited to 'libjava/java/lang/VMCompiler.h')
-rw-r--r-- | libjava/java/lang/VMCompiler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libjava/java/lang/VMCompiler.h b/libjava/java/lang/VMCompiler.h index e81f694..9034bd3 100644 --- a/libjava/java/lang/VMCompiler.h +++ b/libjava/java/lang/VMCompiler.h @@ -41,6 +41,7 @@ public: private: VMCompiler(); static ::java::lang::Class * loadSharedLibrary(::java::lang::ClassLoader *, ::java::lang::String *, ::java::security::ProtectionDomain *, ::java::lang::String *); + static ::java::lang::String * bytesToString(JArray< jbyte > *); public: static ::java::lang::Class * compileClass(::java::lang::ClassLoader *, ::java::lang::String *, JArray< jbyte > *, jint, jint, ::java::security::ProtectionDomain *); static jboolean compileClass(::java::lang::Class *); |