# HG changeset patch # User Josef Eisl # Date 1436881817 -7200 # Node ID 29e41630c86cf3abb983b837cb5191b8d6c8235b # Parent 60d75935edf2f36638207f95e8043f6201953dc4 StackMoveTest: fix. diff -r 60d75935edf2 -r 29e41630c86c graal/com.oracle.graal.lir.jtt/src/com/oracle/graal/lir/jtt/StackMoveTest.java --- a/graal/com.oracle.graal.lir.jtt/src/com/oracle/graal/lir/jtt/StackMoveTest.java Thu Jul 02 10:13:58 2015 +0200 +++ b/graal/com.oracle.graal.lir.jtt/src/com/oracle/graal/lir/jtt/StackMoveTest.java Tue Jul 14 15:50:17 2015 +0200 @@ -83,11 +83,11 @@ @Test public void runInt() throws Throwable { - runTest("testInt", Integer.MIN_VALUE, supply(() -> new int[3])); + runTest("testInt", Integer.MIN_VALUE, supply(() -> new int[4])); runTest("testInt", -1, supply(() -> new int[4])); - runTest("testInt", 0, supply(() -> new int[3])); - runTest("testInt", 1, supply(() -> new int[3])); - runTest("testInt", Integer.MAX_VALUE, supply(() -> new int[3])); + runTest("testInt", 0, supply(() -> new int[4])); + runTest("testInt", 1, supply(() -> new int[4])); + runTest("testInt", Integer.MAX_VALUE, supply(() -> new int[4])); } /*