changeset 2646:ce054e34fbaf

Fixed regression.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 11 May 2011 14:37:20 +0200
parents b2c1e959be46
children 0bf54306c139
files graal/GraalCompiler/src/com/sun/c1x/graph/BlockMap.java
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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) {