comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/BreakpointNode.java @ 18998:ec0733b5a90a

Allow final modifier on node subclasses and start adding the modifier to leaf classes.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Wed, 28 Jan 2015 02:34:14 +0100
parents f57d86eb036f
children 7e2c87dae93e
comparison
equal deleted inserted replaced
18997:2ccaaf5a6be4 18998:ec0733b5a90a
44 * 44 *
45 * Note that the signature is arbitrary. It's sole purpose is to capture values you may want to 45 * Note that the signature is arbitrary. It's sole purpose is to capture values you may want to
46 * inspect in the native debugger when the breakpoint is hit. 46 * inspect in the native debugger when the breakpoint is hit.
47 */ 47 */
48 @NodeInfo 48 @NodeInfo
49 public class BreakpointNode extends FixedWithNextNode implements LIRLowerable { 49 public final class BreakpointNode extends FixedWithNextNode implements LIRLowerable {
50 50
51 @Input NodeInputList<ValueNode> arguments; 51 @Input NodeInputList<ValueNode> arguments;
52 52
53 public BreakpointNode(ValueNode[] arguments) { 53 public BreakpointNode(ValueNode[] arguments) {
54 super(StampFactory.forVoid()); 54 super(StampFactory.forVoid());