changeset 22250:29e41630c86c

StackMoveTest: fix.
author Josef Eisl <josef.eisl@jku.at>
date Tue, 14 Jul 2015 15:50:17 +0200
parents 60d75935edf2
children 5354474091f7
files graal/com.oracle.graal.lir.jtt/src/com/oracle/graal/lir/jtt/StackMoveTest.java
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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]));
     }
 
     /*