# HG changeset patch # User bharadwaj # Date 1461265438 14400 # Node ID 04a779e51d6e77f1bc48728427b363d48396454e # Parent 74d146e5be3b2b4b055523f4938226e0496ef5c1# Parent 761b84c1f916c83dbbc43c730bcbcd1c41df9cf5 Merge diff -r 74d146e5be3b -r 04a779e51d6e test/lib/sun/hotspot/WhiteBox.java --- a/test/lib/sun/hotspot/WhiteBox.java Wed Apr 20 19:16:32 2016 +0300 +++ b/test/lib/sun/hotspot/WhiteBox.java Thu Apr 21 15:03:58 2016 -0400 @@ -317,6 +317,11 @@ Objects.requireNonNull(method); return enqueueMethodForCompilation0(method, compLevel, entry_bci); } + private native boolean enqueueInitializerForCompilation0(Class aClass, int compLevel); + public boolean enqueueInitializerForCompilation(Class aClass, int compLevel) { + Objects.requireNonNull(aClass); + return enqueueInitializerForCompilation0(aClass, compLevel); + } private native void clearMethodState0(Executable method); public void clearMethodState(Executable method) { Objects.requireNonNull(method);