changeset 22150:18480847a17b

[SPARC] Fix register counts in SPARCAllocatorTest
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Fri, 03 Jul 2015 14:10:26 +0200
parents 1bd5caa41faf
children 32434ca987d7
files graal/com.oracle.graal.compiler.sparc.test/src/com/oracle/graal/compiler/sparc/test/SPARCAllocatorTest.java
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.compiler.sparc.test/src/com/oracle/graal/compiler/sparc/test/SPARCAllocatorTest.java	Fri Jul 03 09:56:16 2015 +0200
+++ b/graal/com.oracle.graal.compiler.sparc.test/src/com/oracle/graal/compiler/sparc/test/SPARCAllocatorTest.java	Fri Jul 03 14:10:26 2015 +0200
@@ -40,7 +40,7 @@
 
     @Test
     public void test1() {
-        testAllocation("test1snippet", 1, 0, 0);
+        testAllocation("test1snippet", 2, 0, 0);
     }
 
     public static long test1snippet(long x) {
@@ -49,7 +49,7 @@
 
     @Test
     public void test2() {
-        testAllocation("test2snippet", 1, 0, 0);
+        testAllocation("test2snippet", 2, 0, 0);
     }
 
     public static long test2snippet(long x) {
@@ -58,7 +58,7 @@
 
     @Test
     public void test3() {
-        testAllocation("test3snippet", 3, 0, 0);
+        testAllocation("test3snippet", 4, 0, 0);
     }
 
     public static long test3snippet(long x) {