mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
* jvmti.cc (_Jv_JVMTI_GetMethodName): New function.
(_Jv_JVMTI_Interface): Define GetMethodName.
* testsuite/libjava.jvmti/getmethodname.java: New file.
* testsuite/libjava.jvmti/natgetmethodname.cc: New file.
* testsuite/libjava.jvmti/getmethodname.out: New file.
From-SVN: r121179
11 lines
222 B
Java
11 lines
222 B
Java
public class getmethodname
|
|
{
|
|
public static native void do_getmethodname_tests ();
|
|
|
|
public static void main (String[] args)
|
|
{
|
|
System.out.println ("JVMTI GetMethodName tests");
|
|
do_getmethodname_tests ();
|
|
}
|
|
}
|