diff graal/GraalCompiler/src/com/sun/c1x/graph/IR.java @ 2832:775c31be565c

Clean up. Removed special exception successors in LIRBlock. Throw no longer a BlockEnd.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Tue, 31 May 2011 11:50:19 +0200
parents bd17ac598c6e
children 1cd59ca9ac86
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Tue May 31 11:32:48 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Tue May 31 11:50:19 2011 +0200
@@ -100,11 +100,11 @@
 
         for (Block b : blocks) {
             for (Block succ : b.getSuccessors()) {
-                if (succ.isExceptionEntry()) {
-                    map.get(b).getExceptionHandlerSuccessors().add(map.get(succ));
-                } else {
+//                if (succ.isExceptionEntry()) {
+//                    map.get(b).getExceptionHandlerSuccessors().add(map.get(succ));
+//                } else {
                     map.get(b).blockSuccessors().add(map.get(succ));
-                }
+//                }
             }
 
             for (Block pred : b.getPredecessors()) {