fix OpenJDK 8 class library build

This commit is contained in:
Joel Dice 2015-02-27 13:59:06 -07:00
parent 09833801c8
commit 02cfe06850

View File

@ -2400,20 +2400,20 @@ object makeJmethod(Thread* t,
0, 0,
0, 0,
declaredAnnotations, declaredAnnotations,
clazz, cast<GcJclass>(t, clazz),
slot, slot,
name, cast<GcString>(t, name),
returnType, cast<GcJclass>(t, returnType),
parameterTypes, parameterTypes,
exceptionTypes, exceptionTypes,
modifiers, modifiers,
signature, cast<GcString>(t, signature),
genericInfo, genericInfo,
annotations, cast<GcByteArray>(t, annotations),
parameterAnnotations, cast<GcByteArray>(t, parameterAnnotations),
annotationDefault, cast<GcByteArray>(t, annotationDefault),
methodAccessor, methodAccessor,
root); cast<GcJmethod>(t, root));
} }
object makeJconstructor(Thread* t, object makeJconstructor(Thread* t,
@ -2438,17 +2438,17 @@ object makeJconstructor(Thread* t,
0, 0,
0, 0,
declaredAnnotations, declaredAnnotations,
clazz, cast<GcJclass>(t, clazz),
slot, slot,
parameterTypes, parameterTypes,
exceptionTypes, exceptionTypes,
modifiers, modifiers,
signature, cast<GcString>(t, signature),
genericInfo, genericInfo,
annotations, cast<GcByteArray>(t, annotations),
parameterAnnotations, cast<GcByteArray>(t, parameterAnnotations),
constructorAccessor, constructorAccessor,
root); cast<GcJconstructor>(t, root));
} }
#endif // HAVE_JexecutableHasRealParameterData #endif // HAVE_JexecutableHasRealParameterData