changeset 22144:a19ed9118dc4

Update to latest truffle
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Wed, 08 Jul 2015 12:40:07 +0200
parents 8ed96cb1a658
children 2378eaca447a
files graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/builtins/SLGraalRuntimeBuiltin.java mx.graal/suite.py
diffstat 2 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/builtins/SLGraalRuntimeBuiltin.java	Tue Jul 07 16:50:59 2015 +0200
+++ b/graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/builtins/SLGraalRuntimeBuiltin.java	Wed Jul 08 12:40:07 2015 +0200
@@ -37,7 +37,7 @@
 
     public SLGraalRuntimeBuiltin() {
         super(null);
-        assignSourceSection(new NullSourceSection("SL Builtin", SLContext.lookupNodeInfo(getClass()).shortName()));
+        assignSourceSection(SourceSection.createUnavailable("SL Builtin", SLContext.lookupNodeInfo(getClass()).shortName()));
         if (!(Truffle.getRuntime() instanceof GraalTruffleRuntime)) {
             throw new AssertionError("Graal runtime builtins can only be used inside of a Graal runtime.");
         }
--- a/mx.graal/suite.py	Tue Jul 07 16:50:59 2015 +0200
+++ b/mx.graal/suite.py	Wed Jul 08 12:40:07 2015 +0200
@@ -13,10 +13,10 @@
             },
             {
                "name" : "truffle",
-               "version" : "4858c5e074e9005075e89cf5b1c2347ee73a5d31",
+               "version" : "f878f9778548f684c6f8b88e1bb7d3b49d40ce4c",
                "urls" : [
                     {"url" : "http://lafo.ssw.uni-linz.ac.at/hg/truffle", "kind" : "hg"},
-                    {"url" : "http://lafo.ssw.uni-linz.ac.at/nexus/content/repositories/snapshots", "kind" : "binary", "version-adjust" : "0.8-{version}-SNAPSHOT"},
+                    {"url" : "http://lafo.ssw.uni-linz.ac.at/nexus/content/repositories/snapshots", "kind" : "binary"},
                 ]
             },
     ]
@@ -817,6 +817,7 @@
         "com.oracle.graal.compiler.test",
         "truffle:TRUFFLE_SL",
       ],
+      "annotationProcessors" : ["truffle:TRUFFLE_DSL_PROCESSOR"],
       "checkstyle" : "com.oracle.graal.graph",
       "javaCompliance" : "1.8",
       "workingSets" : "Graal,Truffle,Test",