comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/PiNode.java @ 17328:c9bb0da795d4

Backed out of changeset 17322:655f3e6b467b
author Doug Simon <doug.simon@oracle.com>
date Fri, 03 Oct 2014 14:19:58 +0200
parents 655f3e6b467b
children 45b45f902bed
comparison
equal deleted inserted replaced
17327:655f3e6b467b 17328:c9bb0da795d4
43 */ 43 */
44 @NodeInfo 44 @NodeInfo
45 public class PiNode extends FloatingGuardedNode implements LIRLowerable, Virtualizable, IterableNodeType, Canonicalizable, ValueProxy { 45 public class PiNode extends FloatingGuardedNode implements LIRLowerable, Virtualizable, IterableNodeType, Canonicalizable, ValueProxy {
46 46
47 @Input ValueNode object; 47 @Input ValueNode object;
48 protected Stamp piStamp; 48 protected final Stamp piStamp;
49 49
50 public ValueNode object() { 50 public ValueNode object() {
51 return object; 51 return object;
52 } 52 }
53 53