diff graal/GraalCompiler/src/com/sun/c1x/graph/IR.java @ 2712:a0dd2b907806

Removed implicit safepoints.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 19 May 2011 13:09:37 +0200
parents 4272b7af2d17
children c1a9bf38da28
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Wed May 18 18:40:58 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Thu May 19 13:09:37 2011 +0200
@@ -168,7 +168,7 @@
         BlockBegin newSucc = new BlockBegin(bci, nextBlockNumber(), compilation.graph);
 
         // This goto is not a safepoint.
-        Goto e = new Goto(target, null, false, compilation.graph);
+        Goto e = new Goto(target, null, compilation.graph);
         newSucc.appendNext(e, bci);
         newSucc.setEnd(e);
         e.reorderSuccessor(0, backEdgeIndex);