comparison graal/GraalCompiler/src/com/sun/c1x/ir/LookupSwitch.java @ 2750:6048da340364

less references to BlockBegin in BlockEnd instructions
author Lukas Stadler <lukas.stadler@jku.at>
date Fri, 20 May 2011 14:22:19 +0200
parents a3cd5eb68837
children ca31e84ff154
comparison
equal deleted inserted replaced
2749:36440e516e44 2750:6048da340364
48 * @param keys the list of keys, sorted 48 * @param keys the list of keys, sorted
49 * @param stateAfter the state after the switch 49 * @param stateAfter the state after the switch
50 * @param isSafepoint {@code true} if this instruction is a safepoint 50 * @param isSafepoint {@code true} if this instruction is a safepoint
51 * @param graph 51 * @param graph
52 */ 52 */
53 public LookupSwitch(Value value, List<BlockBegin> successors, int[] keys, FrameState stateAfter, Graph graph) { 53 public LookupSwitch(Value value, List<? extends Instruction> successors, int[] keys, FrameState stateAfter, Graph graph) {
54 super(value, successors, stateAfter, INPUT_COUNT, SUCCESSOR_COUNT, graph); 54 super(value, successors, stateAfter, INPUT_COUNT, SUCCESSOR_COUNT, graph);
55 this.keys = keys; 55 this.keys = keys;
56 } 56 }
57 57
58 /** 58 /**