# HG changeset patch # User Doug Simon # Date 1339421382 -7200 # Node ID f09458df6f06bb8e75d412f64e12c8b89b419602 # Parent 31bb778a6ec5ab5288da52aceeeac1d61cdb2d45 added missing @ConstantNodeParameter to CurrentThread node intrinsic diff -r 31bb778a6ec5 -r f09458df6f06 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/CurrentThread.java --- 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(); } }