# HG changeset patch # User Thomas Wuerthinger # Date 1421018756 -3600 # Node ID 2f78f970adea312de75162bda980b51fdc67eb78 # Parent 5d36d7eeb13dbdfec183c6fc4fe8c7f5a5129ffe Remove outdated assert. diff -r 5d36d7eeb13d -r 2f78f970adea graal/com.oracle.graal.java/src/com/oracle/graal/java/GraphBuilderPhase.java --- a/graal/com.oracle.graal.java/src/com/oracle/graal/java/GraphBuilderPhase.java Sun Jan 11 23:47:28 2015 +0100 +++ b/graal/com.oracle.graal.java/src/com/oracle/graal/java/GraphBuilderPhase.java Mon Jan 12 00:25:56 2015 +0100 @@ -745,9 +745,6 @@ if (graphBuilderConfig.omitAllExceptionEdges() || (optimisticOpts.useExceptionProbability() && profilingInfo.getExceptionSeen(bci()) == TriState.FALSE)) { createInvoke(callTarget, resultType); } else { - assert bci() == currentBlock.endBci; - frameState.clearNonLiveLocals(currentBlock, liveness, false); - InvokeWithExceptionNode invoke = createInvokeWithException(callTarget, resultType); BeginNode beginNode = currentGraph.add(KillingBeginNode.create(LocationIdentity.ANY_LOCATION)); invoke.setNext(beginNode);