comparison graal/com.oracle.max.graal.tests/src/com/oracle/graal/compiler/tests/MonitorTest.java @ 5060:4ed4295ce15f

Update import statements.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 08 Mar 2012 19:11:12 +0100
parents ed559a528128
children
comparison
equal deleted inserted replaced
5059:ed559a528128 5060:4ed4295ce15f
18 * 18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 */ 22 */
23 package com.oracle.max.graal.compiler.tests; 23 package com.oracle.graal.compiler.tests;
24 24
25 import static com.oracle.max.graal.graph.iterators.NodePredicates.*; 25 import static com.oracle.graal.graph.iterators.NodePredicates.*;
26 26
27 import java.util.*; 27 import java.util.*;
28 28
29 import junit.framework.*; 29 import junit.framework.*;
30 30
31 import org.junit.Assert; 31 import org.junit.Assert;
32 import org.junit.Test; 32 import org.junit.Test;
33 33
34 import com.oracle.max.graal.compiler.phases.*; 34 import com.oracle.graal.compiler.phases.*;
35 import com.oracle.max.graal.graph.*; 35 import com.oracle.graal.graph.*;
36 import com.oracle.max.graal.graph.iterators.*; 36 import com.oracle.graal.graph.iterators.*;
37 import com.oracle.max.graal.nodes.*; 37 import com.oracle.graal.nodes.*;
38 import com.oracle.max.graal.nodes.java.*; 38 import com.oracle.graal.nodes.java.*;
39 39
40 /** 40 /**
41 * In the following tests, the usages of local variable "a" are replaced with the integer constant 0. 41 * In the following tests, the usages of local variable "a" are replaced with the integer constant 0.
42 * Then canonicalization is applied and it is verified that the resulting graph is equal to the 42 * Then canonicalization is applied and it is verified that the resulting graph is equal to the
43 * graph of the method that just has a "return 1" statement in it. 43 * graph of the method that just has a "return 1" statement in it.