aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/lang/VMCompiler.h
diff options
context:
space:
mode:
authorAndrew Haley <aph@redhat.com>2007-04-02 16:36:52 +0000
committerAndrew Haley <aph@gcc.gnu.org>2007-04-02 16:36:52 +0000
commita0036853d2b6260c0a322da8d411dcebd3ac4f9e (patch)
tree826918a6ab1985e623a1617586fc734818568de0 /libjava/java/lang/VMCompiler.h
parente6c45b1e3435efa993309f69654ac5411327d755 (diff)
downloadgcc-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.h1
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 *);