comparison graal/GraalCompiler/src/com/sun/c1x/ir/Switch.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
62 /** 62 /**
63 * Constructs a new Switch. 63 * Constructs a new Switch.
64 * @param value the instruction that provides the value to be switched over 64 * @param value the instruction that provides the value to be switched over
65 * @param successors the list of successors of this switch 65 * @param successors the list of successors of this switch
66 * @param stateAfter the state after the switch 66 * @param stateAfter the state after the switch
67 * @param isSafepoint {@code true} if this switch is a safepoint
68 * @param graph 67 * @param graph
69 */ 68 */
70 public Switch(Value value, List<? extends Instruction> successors, FrameState stateAfter, int inputCount, int successorCount, Graph graph) { 69 public Switch(Value value, List<? extends Instruction> successors, FrameState stateAfter, int inputCount, int successorCount, Graph graph) {
71 super(CiKind.Illegal, stateAfter, successors, inputCount + INPUT_COUNT, successorCount + SUCCESSOR_COUNT, graph); 70 super(CiKind.Illegal, stateAfter, successors, inputCount + INPUT_COUNT, successorCount + SUCCESSOR_COUNT, graph);
72 setValue(value); 71 setValue(value);