changeset 18833:2f78f970adea

Remove outdated assert.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Mon, 12 Jan 2015 00:25:56 +0100
parents 5d36d7eeb13d
children 21de06b3f429
files graal/com.oracle.graal.java/src/com/oracle/graal/java/GraphBuilderPhase.java
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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);