changeset 5559:f09458df6f06

added missing @ConstantNodeParameter to CurrentThread node intrinsic
author Doug Simon <doug.simon@oracle.com>
date Mon, 11 Jun 2012 15:29:42 +0200
parents 31bb778a6ec5
children 12dc45f4fc14
files graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/CurrentThread.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/nodes/CurrentThread.java	Mon Jun 11 15:28:55 2012 +0200
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/CurrentThread.java	Mon Jun 11 15:29:42 2012 +0200
@@ -45,7 +45,7 @@
 
     @SuppressWarnings("unused")
     @NodeIntrinsic
-    public static Object get(int threadObjectOffset) {
+    public static Object get(@ConstantNodeParameter int threadObjectOffset) {
         throw new UnsupportedOperationException();
     }
 }