# HG changeset patch # User Lukas Stadler # Date 1334839584 -7200 # Node ID 9fe76535501fc6012f8a7201abbe738817a07eea # Parent 467de393651a57edbd9a23abfa8f4a63516120bf make non-empty liveIn set of first block a fatal GraalInternalError diff -r 467de393651a -r 9fe76535501f 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 Wed Apr 18 23:39:07 2012 +0200 +++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/alloc/LinearScan.java Thu Apr 19 14:46:24 2012 +0200 @@ -846,7 +846,7 @@ TTY.println("startBlock-ID: " + startBlock.getId()); // bailout of if this occurs in product mode. - throw new CiBailout("liveIn set of first block must be empty"); + throw new GraalInternalError("liveIn set of first block must be empty"); } }