# HG changeset patch # User Lukas Stadler # Date 1335170596 -7200 # Node ID 558ea5229886f55ab07e81ee91c8a24ec1d70616 # Parent e7f3f05414291e5b4f10b39e1f03011808c8e23b (temporarily) make non-empty liveIn set a bailout again diff -r e7f3f0541429 -r 558ea5229886 graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/alloc/LinearScan.java --- 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"); } }