# HG changeset patch # User Thomas Wuerthinger # Date 1305117440 -7200 # Node ID ce054e34fbaf674fec226294445be6443ac268ad # Parent b2c1e959be46690fa200730043c9033f020dc229 Fixed regression. diff -r b2c1e959be46 -r ce054e34fbaf graal/GraalCompiler/src/com/sun/c1x/graph/BlockMap.java --- a/graal/GraalCompiler/src/com/sun/c1x/graph/BlockMap.java Wed May 11 14:34:29 2011 +0200 +++ b/graal/GraalCompiler/src/com/sun/c1x/graph/BlockMap.java Wed May 11 14:37:20 2011 +0200 @@ -360,6 +360,7 @@ int bci = 0; ExceptionMap exceptionMap = this.exceptionMap; byte[] code = this.code; + make(0); while (bci < code.length) { int opcode = Bytes.beU1(code, bci); switch (opcode) {