# HG changeset patch # User Andreas Woess # Date 1446590312 -3600 # Node ID 36a46bae0a59a76982f4e724cb9ed805a501369f # Parent 6c234690e5b9e220a1afc2be11f481a5103bcd97 update truffle import. diff -r 6c234690e5b9 -r 36a46bae0a59 graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/InstrumentationPartialEvaluationTest.java --- a/graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/InstrumentationPartialEvaluationTest.java Tue Nov 03 13:44:44 2015 -0800 +++ b/graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/InstrumentationPartialEvaluationTest.java Tue Nov 03 23:38:32 2015 +0100 @@ -66,7 +66,7 @@ public void before() { // TODO (mlvdv) eventually abstract this try { - vm = PolyglotEngine.buildNew().build(); + vm = PolyglotEngine.newBuilder().build(); final Field field = PolyglotEngine.class.getDeclaredField("instrumenter"); field.setAccessible(true); instrumenter = (Instrumenter) field.get(vm); diff -r 6c234690e5b9 -r 36a46bae0a59 graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/InstrumentationTestMode.java --- a/graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/InstrumentationTestMode.java Tue Nov 03 13:44:44 2015 -0800 +++ b/graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/InstrumentationTestMode.java Tue Nov 03 23:38:32 2015 +0100 @@ -34,7 +34,7 @@ public static void set(boolean enable) { try { - final PolyglotEngine vm = PolyglotEngine.buildNew().build(); + final PolyglotEngine vm = PolyglotEngine.newBuilder().build(); final Field instrumenterField = vm.getClass().getDeclaredField("instrumenter"); instrumenterField.setAccessible(true); final Object instrumenter = instrumenterField.get(vm); diff -r 6c234690e5b9 -r 36a46bae0a59 mx.graal/suite.py --- a/mx.graal/suite.py Tue Nov 03 13:44:44 2015 -0800 +++ b/mx.graal/suite.py Tue Nov 03 23:38:32 2015 +0100 @@ -47,7 +47,7 @@ }, { "name" : "truffle", - "version" : "fdc687bad5d4abafb8bbb6ab7a0fe00908a00c19", + "version" : "bb3c03f2442d51df60e8f154c14b8b28ffe52dfc", "urls" : [ {"url" : "http://lafo.ssw.uni-linz.ac.at/hg/truffle", "kind" : "hg"}, {"url" : "https://curio.ssw.jku.at/nexus/content/repositories/snapshots", "kind" : "binary"},