diff graal/GraalCompiler/src/com/sun/c1x/graph/BlockMap.java @ 2624:8e44074058af

remove explicit pointer from BlockEnd to BlockBegin
author Lukas Stadler <lukas.stadler@jku.at>
date Tue, 10 May 2011 14:29:40 +0200
parents 0c6564c254af
children b2c1e959be46
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/graph/BlockMap.java	Tue May 10 11:55:12 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/graph/BlockMap.java	Tue May 10 14:29:40 2011 +0200
@@ -265,7 +265,7 @@
         return null;
     }
 
-    BlockBegin make(int bci) {
+    private BlockBegin make(int bci) {
         BlockBegin block = blockMap[bci];
         if (block == null) {
             block = new BlockBegin(bci, blockNum++, graph);