comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/LocationNode.java @ 19471:880717e44675

Use typed NodeClass in node constructors.
author Roland Schatz <roland.schatz@oracle.com>
date Wed, 18 Feb 2015 12:12:26 +0100
parents 61d3cb8e1280
children 8fc336a04d77
comparison
equal deleted inserted replaced
19470:d216de21bfe8 19471:880717e44675
45 * Marker interface for locations in snippets. 45 * Marker interface for locations in snippets.
46 */ 46 */
47 public interface Location { 47 public interface Location {
48 } 48 }
49 49
50 protected LocationNode(NodeClass<?> c, Stamp stamp) { 50 protected LocationNode(NodeClass<? extends LocationNode> c, Stamp stamp) {
51 super(c, stamp); 51 super(c, stamp);
52 } 52 }
53 53
54 /** 54 /**
55 * Returns the identity of the accessed memory location. 55 * Returns the identity of the accessed memory location.