# HG changeset patch # User Lukas Stadler # Date 1335266039 -7200 # Node ID 96e52f0c0785dd0d9a2760bfb0bc467704c12197 # Parent 74dfa6f868792abc38588e0d582a923f96ceb536 fix for last changeset diff -r 74dfa6f86879 -r 96e52f0c0785 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilerThread.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilerThread.java Tue Apr 24 13:04:43 2012 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilerThread.java Tue Apr 24 13:13:59 2012 +0200 @@ -57,7 +57,7 @@ public void run() { if (GraalOptions.Debug) { Debug.enable(); - HotSpotDebugConfig hotspotDebugConfig = new HotSpotDebugConfig(GraalOptions.Log, GraalOptions.Meter, GraalOptions.Time, GraalOptions.Dump, GraalOptions.MethodFilter, GraalOptions.LogFile); + HotSpotDebugConfig hotspotDebugConfig = new HotSpotDebugConfig(GraalOptions.Log, GraalOptions.Meter, GraalOptions.Time, GraalOptions.Dump, GraalOptions.MethodFilter); Debug.setConfig(hotspotDebugConfig); } super.run();