Merge
authorbharadwaj
Tue, 19 Apr 2016 15:26:51 -0400
changeset 37957 761b84c1f916
parent 37953 195cce402934 (current diff)
parent 37956 552c8a62ea8b (diff)
child 37958 04a779e51d6e
Merge
--- a/test/lib/sun/hotspot/WhiteBox.java	Tue Apr 19 13:19:41 2016 +0200
+++ b/test/lib/sun/hotspot/WhiteBox.java	Tue Apr 19 15:26:51 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);