comparison graal/GraalCompiler/src/com/sun/c1x/ir/BlockEnd.java @ 2788:df4c5254c5cc

Towards goto removal.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 25 May 2011 14:33:44 +0200
parents 915456e4959e
children 50677668afe3
comparison
equal deleted inserted replaced
2785:847dcd4dbd4c 2788:df4c5254c5cc
33 */ 33 */
34 public abstract class BlockEnd extends Instruction { 34 public abstract class BlockEnd extends Instruction {
35 35
36 private static final int INPUT_COUNT = 0; 36 private static final int INPUT_COUNT = 0;
37 37
38 private static final int SUCCESSOR_COUNT = 1; 38 private static final int SUCCESSOR_COUNT = 0;
39 private static final int SUCCESSOR_STATE_AFTER = 0;
40 private final int blockSuccessorCount; 39 private final int blockSuccessorCount;
41 40
42 @Override 41 @Override
43 protected int inputCount() { 42 protected int inputCount() {
44 return super.inputCount() + INPUT_COUNT; 43 return super.inputCount() + INPUT_COUNT;