changeset 10078:7bcc4bf839fe

Bugfix for compilation queue.
author Christian Haeubl <haeubl@ssw.jku.at>
date Tue, 18 Jun 2013 10:43:00 +0200
parents 25de9c96a032
children 77772d794ffd
files graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilationTask.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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() {