changeset 5271:558ea5229886

(temporarily) make non-empty liveIn set a bailout again
author Lukas Stadler <lukas.stadler@jku.at>
date Mon, 23 Apr 2012 10:43:16 +0200
parents e7f3f0541429
children d0877209410d
files graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/alloc/LinearScan.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/alloc/LinearScan.java	Fri Apr 20 15:12:10 2012 +0200
+++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/alloc/LinearScan.java	Mon Apr 23 10:43:16 2012 +0200
@@ -846,7 +846,7 @@
             TTY.println("startBlock-ID: " + startBlock.getId());
 
             // bailout of if this occurs in product mode.
-            throw new GraalInternalError("liveIn set of first block must be empty");
+            throw new CiBailout("liveIn set of first block must be empty");
         }
     }