comparison graal/GraalCompiler/src/com/sun/c1x/ir/Goto.java @ 2762:ca31e84ff154

Javadoc clean up.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Sat, 21 May 2011 17:56:11 +0200
parents 6048da340364
children 93fd92c9f8b0
comparison
equal deleted inserted replaced
2761:d3398b21faf9 2762:ca31e84ff154
37 37
38 /** 38 /**
39 * Constructs a new Goto instruction. 39 * Constructs a new Goto instruction.
40 * @param succ the successor block of the goto 40 * @param succ the successor block of the goto
41 * @param stateAfter the frame state at the end of this block 41 * @param stateAfter the frame state at the end of this block
42 * @param isSafepoint {@code true} if the goto should be considered a safepoint (e.g. backward branch)
43 * @param graph 42 * @param graph
44 */ 43 */
45 public Goto(Instruction succ, FrameState stateAfter, Graph graph) { 44 public Goto(Instruction succ, FrameState stateAfter, Graph graph) {
46 super(CiKind.Illegal, stateAfter, 1, INPUT_COUNT, SUCCESSOR_COUNT, graph); 45 super(CiKind.Illegal, stateAfter, 1, INPUT_COUNT, SUCCESSOR_COUNT, graph);
47 setBlockSuccessor(0, succ); 46 setBlockSuccessor(0, succ);