reverse operands when calling builtin isAssignableFrom

Our builtin function reverses the meanings of the operands relative to
the JNI method.
This commit is contained in:
Joel Dice 2010-09-10 17:45:52 -06:00
parent b62d07996f
commit ea2509666a

View File

@ -404,7 +404,7 @@ IsInstanceOf(Thread* t, jobject o, jclass c)
}
jboolean JNICALL
IsAssignableFrom(Thread* t, jclass a, jclass b)
IsAssignableFrom(Thread* t, jclass b, jclass a)
{
ENTER(t, Thread::ActiveState);