# HG changeset patch # User bharadwaj # Date 1460485050 14400 # Node ID 552c8a62ea8b56317f7640ea9f459eef12e37705 # Parent 0269ea8022666e1c6fce651ec625e65b6755fad5# Parent 0e25f6f1d8f0487880fdbe19d61a720f595108ea Merge diff -r 0269ea802266 -r 552c8a62ea8b test/lib/sun/hotspot/WhiteBox.java --- a/test/lib/sun/hotspot/WhiteBox.java Mon Apr 11 14:21:24 2016 -0700 +++ b/test/lib/sun/hotspot/WhiteBox.java Tue Apr 12 14:17:30 2016 -0400 @@ -307,6 +307,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);