comparison graal/GraalCompiler/src/com/sun/c1x/value/FrameStateAccess.java @ 2636:8c02ca1e9eb1

Fixed bci for stateBefore in BlockBegin
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 11 May 2011 11:43:44 +0200
parents dd115f80acf8
children 7ed72769d51a
comparison
equal deleted inserted replaced
2635:0f69be73d5ce 2636:8c02ca1e9eb1
24 24
25 import com.sun.c1x.ir.*; 25 import com.sun.c1x.ir.*;
26 26
27 public interface FrameStateAccess { 27 public interface FrameStateAccess {
28 28
29 FrameState duplicate(); 29 FrameState duplicate(int newBci);
30 30
31 int localsSize(); 31 int localsSize();
32 32
33 int stackSize(); 33 int stackSize();
34 34