diff graal/GraalCompiler/src/com/sun/c1x/graph/CriticalEdgeFinder.java @ 2621:dd115f80acf8

changed stateAfter FrameState to successor (instead of input), checkstyle fixes, added fixed root node to graph
author Lukas Stadler <lukas.stadler@jku.at>
date Tue, 10 May 2011 11:55:12 +0200
parents 4a36a0bd6d18
children 6ab73784566a
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/graph/CriticalEdgeFinder.java	Mon May 09 19:12:55 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/graph/CriticalEdgeFinder.java	Tue May 10 11:55:12 2011 +0200
@@ -33,8 +33,6 @@
  * An edge between two blocks {@code A} and {@code B} is "critical" if {@code A}
  * has more than one successor and {@code B} has more than one predecessor. Such
  * edges are split by adding a block between the two blocks.
- *
- * @author Thomas Wuerthinger
  */
 public class CriticalEdgeFinder implements BlockClosure {