diff graal/GraalCompiler/src/com/sun/c1x/graph/IR.java @ 2661:194d93d089bd

Towards clean up of canTrap().
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 11 May 2011 17:18:31 +0200
parents 7c8ad40c1f88
children 6ab73784566a
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Wed May 11 16:40:22 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Wed May 11 17:18:31 2011 +0200
@@ -192,7 +192,6 @@
         // for the first and delete the rest.
         List<BlockBegin> list = target.blockPredecessors();
         int x = list.indexOf(source);
-        assert x >= 0;
         list.set(x, newSucc);
         newSucc.addPredecessor(source);
         Iterator<BlockBegin> iterator = list.iterator();