# HG changeset patch # User Jaroslav Tulach # Date 1437404505 -7200 # Node ID 5c350399111efaf482e4aa0b5da34b2c17757d90 # Parent 12e527c175b298713f89ba2369cb61056ab76c08 Replacing yet another use of deprecated RootNode constructor diff -r 12e527c175b2 -r 5c350399111e graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/BytecodeInterpreterPartialEvaluationTest.java --- a/graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/BytecodeInterpreterPartialEvaluationTest.java Mon Jul 20 16:57:56 2015 +0200 +++ b/graal/com.oracle.graal.truffle.test/src/com/oracle/graal/truffle/test/BytecodeInterpreterPartialEvaluationTest.java Mon Jul 20 17:01:45 2015 +0200 @@ -439,7 +439,7 @@ protected final FrameSlot returnSlot; public InstArrayProgram(String name, Inst[] inst, FrameSlot returnSlot, FrameDescriptor fd) { - super(null, fd); + super(MockLanguage.class, null, fd); this.name = name; this.inst = inst; this.returnSlot = returnSlot;