comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/AddLocationNode.java @ 15006:e60ea0bf468d

remove StampFactory.dependency/extension/condition
author Lukas Stadler <lukas.stadler@oracle.com>
date Mon, 07 Apr 2014 11:32:08 +0200
parents d5a1206e1923
children 844cfee4041a
comparison
equal deleted inserted replaced
15005:9fa900dd3f96 15006:e60ea0bf468d
52 assert x.getValueKind().equals(y.getValueKind()) && x.getLocationIdentity() == y.getLocationIdentity(); 52 assert x.getValueKind().equals(y.getValueKind()) && x.getLocationIdentity() == y.getLocationIdentity();
53 return graph.unique(new AddLocationNode(x, y)); 53 return graph.unique(new AddLocationNode(x, y));
54 } 54 }
55 55
56 private AddLocationNode(ValueNode x, ValueNode y) { 56 private AddLocationNode(ValueNode x, ValueNode y) {
57 super(StampFactory.extension()); 57 super(StampFactory.forVoid());
58 this.x = x; 58 this.x = x;
59 this.y = y; 59 this.y = y;
60 } 60 }
61 61
62 @Override 62 @Override