# HG changeset patch # User Doug Simon # Date 1432456047 -7200 # Node ID e538b5923ff08ff6a3b5091e23d7c6c36c9e6e69 # Parent 43c2b3eb3d6d399b86de47ef241933d5ac4220b8 fixed regression that disabled parsing of Graal command line options diff -r 43c2b3eb3d6d -r e538b5923ff0 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotOptions.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotOptions.java Sun May 24 09:18:55 2015 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotOptions.java Sun May 24 10:27:27 2015 +0200 @@ -47,6 +47,8 @@ private static native void parseVMOptions(); static { + parseVMOptions(); + assert !Debug.Initialization.isDebugInitialized() : "The class " + Debug.class.getName() + " must not be initialized before the Graal runtime has been initialized. " + "This can be fixed by placing a call to " + Graal.class.getName() + ".runtime() on the path that triggers initialization of " + Debug.class.getName(); if (areDebugScopePatternsEnabled()) {