comparison graal/com.oracle.graal.jtt/src/com/oracle/graal/jtt/optimize/Fold_Convert03.java @ 7288:0320e6278f84

JTT: Replace "runTestWithDelta(0, " with "runTest("
author Gilles Duboscq <duboscq@ssw.jku.at>
date Thu, 20 Dec 2012 17:09:53 +0100
parents 390448a6b535
children 64dcb92ee75a
comparison
equal deleted inserted replaced
7287:76c9023ed438 7288:0320e6278f84
58 return (float) x; 58 return (float) x;
59 } 59 }
60 60
61 @Test 61 @Test
62 public void run0() throws Throwable { 62 public void run0() throws Throwable {
63 runTestWithDelta(0, "test", 0.0F); 63 runTest("test", 0.0F);
64 } 64 }
65 65
66 @Test 66 @Test
67 public void run1() throws Throwable { 67 public void run1() throws Throwable {
68 runTestWithDelta(0, "test", 1.0F); 68 runTest("test", 1.0F);
69 } 69 }
70 70
71 @Test 71 @Test
72 public void run2() throws Throwable { 72 public void run2() throws Throwable {
73 runTestWithDelta(0, "test", 2.0F); 73 runTest("test", 2.0F);
74 } 74 }
75 75
76 } 76 }