comparison graal/GraalCompiler/src/com/sun/c1x/ir/NegateOp.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 c061a6be3728
comparison
equal deleted inserted replaced
2829:27c00b180416 2834:bfce42cd9c07
67 public NegateOp(Value x, Graph graph) { 67 public NegateOp(Value x, Graph graph) {
68 super(x.kind, INPUT_COUNT, SUCCESSOR_COUNT, graph); 68 super(x.kind, INPUT_COUNT, SUCCESSOR_COUNT, graph);
69 setX(x); 69 setX(x);
70 } 70 }
71 71
72 // for copying
72 private NegateOp(CiKind kind, Graph graph) { 73 private NegateOp(CiKind kind, Graph graph) {
73 super(kind, INPUT_COUNT, SUCCESSOR_COUNT, graph); 74 super(kind, INPUT_COUNT, SUCCESSOR_COUNT, graph);
74 } 75 }
75 76
76 @Override 77 @Override