comparison graal/GraalCompiler/src/com/sun/c1x/ir/And.java @ 2868:6d24c27902a2

turned inlining into a phase, some node cloning fixes, added NodeWorklist
author Lukas Stadler <lukas.stadler@jku.at>
date Tue, 07 Jun 2011 19:19:14 +0200
parents b20f0a48fec3
children
comparison
equal deleted inserted replaced
2867:5c545fef2c81 2868:6d24c27902a2
45 return "&"; 45 return "&";
46 } 46 }
47 47
48 @Override 48 @Override
49 public Node copy(Graph into) { 49 public Node copy(Graph into) {
50 And x = new And(kind, null, null, graph()); 50 And x = new And(kind, null, null, into);
51 return x; 51 return x;
52 } 52 }
53 53
54 @SuppressWarnings("unchecked") 54 @SuppressWarnings("unchecked")
55 @Override 55 @Override