comparison graal/GraalCompiler/src/com/sun/c1x/ir/NewArray.java @ 2634:4dd0573f510b

FrameState fixes.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 11 May 2011 10:52:37 +0200
parents 91d3952f7eb7
children 37f067e76c6f
comparison
equal deleted inserted replaced
2633:721a45190d6d 2634:4dd0573f510b
26 import com.sun.cri.ci.*; 26 import com.sun.cri.ci.*;
27 27
28 /** 28 /**
29 * The {@code NewArray} class is the base of all instructions that allocate arrays. 29 * The {@code NewArray} class is the base of all instructions that allocate arrays.
30 */ 30 */
31 public abstract class NewArray extends Instruction { 31 public abstract class NewArray extends StateSplit {
32 32
33 private static final int INPUT_COUNT = 1; 33 private static final int INPUT_COUNT = 1;
34 private static final int INPUT_LENGTH = 0; 34 private static final int INPUT_LENGTH = 0;
35 35
36 private static final int SUCCESSOR_COUNT = 0; 36 private static final int SUCCESSOR_COUNT = 0;