changeset 2837:7b5831f0e913

Merge.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Tue, 31 May 2011 13:42:01 +0200
parents a75ef246fab3 (diff) c1c8a0291771 (current diff)
children adc4b3ec0a8c 75e0d39833a0
files graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java	Tue May 31 13:37:45 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java	Tue May 31 13:42:01 2011 +0200
@@ -396,8 +396,7 @@
             FrameState stateWithException = entryState.duplicateModified(bci, CiKind.Void, currentExceptionObject);
 
             Instruction successor = createTarget(dispatchBlock, stateWithException);
-            Anchor end = new Anchor(successor, graph);
-            currentNext.setNext(end);
+            currentNext.setNext(successor);
             return entry;
         }
         return null;