comparison graal/GraalCompiler/src/com/sun/c1x/ir/LookupSwitch.java @ 2774:93fd92c9f8b0

Removed usage of stateAfter on BlockEnd instructions.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Tue, 24 May 2011 13:39:50 +0200
parents ca31e84ff154
children 398b8fa5dc81
comparison
equal deleted inserted replaced
2773:27512ea6bbcb 2774:93fd92c9f8b0
47 * @param successors the list of successors 47 * @param successors the list of successors
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 graph 50 * @param graph
51 */ 51 */
52 public LookupSwitch(Value value, List<? extends Instruction> successors, int[] keys, FrameState stateAfter, Graph graph) { 52 public LookupSwitch(Value value, List<? extends Instruction> successors, int[] keys, Graph graph) {
53 super(value, successors, stateAfter, INPUT_COUNT, SUCCESSOR_COUNT, graph); 53 super(value, successors, INPUT_COUNT, SUCCESSOR_COUNT, graph);
54 this.keys = keys; 54 this.keys = keys;
55 } 55 }
56 56
57 /** 57 /**
58 * Gets the key at the specified index. 58 * Gets the key at the specified index.