comparison graal/com.oracle.graal.tests/src/com/oracle/graal/compiler/tests/ScalarTypeSystemTest.java @ 5565:0083a59ced84

Renaming GraphTest => GraalCompilerTest.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Mon, 11 Jun 2012 13:23:13 +0200
parents 0364a2a874b8
children 102f87543d5e
comparison
equal deleted inserted replaced
5564:deec44b74cfb 5565:0083a59ced84
31 import com.oracle.graal.nodes.*; 31 import com.oracle.graal.nodes.*;
32 32
33 /** 33 /**
34 * In the following tests, the scalar type system of the compiler should be complete enough to see the relation between the different conditions. 34 * In the following tests, the scalar type system of the compiler should be complete enough to see the relation between the different conditions.
35 */ 35 */
36 public class ScalarTypeSystemTest extends GraphTest { 36 public class ScalarTypeSystemTest extends GraalCompilerTest {
37 37
38 public static int referenceSnippet1(int a) { 38 public static int referenceSnippet1(int a) {
39 if (a > 0) { 39 if (a > 0) {
40 return 1; 40 return 1;
41 } else { 41 } else {