# HG changeset patch # User Christian Haeubl # Date 1371544980 -7200 # Node ID 7bcc4bf839fe13bcb21b9829693763b7267e975e # Parent 25de9c96a032af96b5a43932dc0df4e6070791b1 Bugfix for compilation queue. diff -r 25de9c96a032 -r 7bcc4bf839fe graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilationTask.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilationTask.java Tue Jun 18 09:00:33 2013 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilationTask.java Tue Jun 18 10:43:00 2013 +0200 @@ -83,7 +83,7 @@ this.entryBCI = entryBCI; this.id = id; this.priority = priority; - this.status = new AtomicReference<>(); + this.status = new AtomicReference<>(CompilationStatus.Queued); } public ResolvedJavaMethod getMethod() {