Merge
authorbharadwaj
Tue, 12 Apr 2016 14:17:30 -0400
changeset 37956 552c8a62ea8b
parent 37028 0269ea802266 (current diff)
parent 37955 0e25f6f1d8f0 (diff)
child 37957 761b84c1f916
Merge
--- 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);