comparison graal/GraalCompiler/src/com/sun/c1x/ir/Or.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 fc75fd3fa5e4
comparison
equal deleted inserted replaced
2867:5c545fef2c81 2868:6d24c27902a2
48 return "|"; 48 return "|";
49 } 49 }
50 50
51 @Override 51 @Override
52 public Node copy(Graph into) { 52 public Node copy(Graph into) {
53 Or x = new Or(kind, null, null, graph()); 53 Or x = new Or(kind, null, null, into);
54 return x; 54 return x;
55 } 55 }
56 56
57 } 57 }