comparison graal/GraalCompiler/src/com/sun/c1x/ir/LogicOp.java @ 2834:bfce42cd9c07

Graph duplication now passes all tests
author Lukas Stadler <lukas.stadler@jku.at>
date Tue, 31 May 2011 13:34:52 +0200
parents bd17ac598c6e
children 14708c03abba
comparison
equal deleted inserted replaced
2829:27c00b180416 2834:bfce42cd9c07
43 */ 43 */
44 public LogicOp(int opcode, Value x, Value y, Graph graph) { 44 public LogicOp(int opcode, Value x, Value y, Graph graph) {
45 super(x.kind, opcode, x, y, INPUT_COUNT, SUCCESSOR_COUNT, graph); 45 super(x.kind, opcode, x, y, INPUT_COUNT, SUCCESSOR_COUNT, graph);
46 } 46 }
47 47
48 public LogicOp(CiKind kind, int opcode, Graph graph) { 48 // for copying
49 private LogicOp(CiKind kind, int opcode, Graph graph) {
49 super(kind, opcode, null, null, INPUT_COUNT, SUCCESSOR_COUNT, graph); 50 super(kind, opcode, null, null, INPUT_COUNT, SUCCESSOR_COUNT, graph);
50 } 51 }
51 52
52 @Override 53 @Override
53 public void accept(ValueVisitor v) { 54 public void accept(ValueVisitor v) {