# HG changeset patch # User Thomas Wuerthinger # Date 1309965343 -7200 # Node ID f9f3059830e994f21205d5f2116f86d811cd306b # Parent af4955a7ffc20808590c20f4c47fdac50f058877 Disabled assert about null state at block entry. diff -r af4955a7ffc2 -r f9f3059830e9 graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/gen/LIRGenerator.java --- a/graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/gen/LIRGenerator.java Wed Jul 06 17:07:31 2011 +0200 +++ b/graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/gen/LIRGenerator.java Wed Jul 06 17:15:43 2011 +0200 @@ -1095,7 +1095,7 @@ lastState = fs; } else if (block.blockPredecessors().size() == 1) { FrameState fs = block.blockPredecessors().get(0).lastState(); - assert fs != null; + //assert fs != null; if (GraalOptions.TraceLIRGeneratorLevel >= 2) { TTY.println("STATE CHANGE (singlePred)"); if (GraalOptions.TraceLIRGeneratorLevel >= 3) {