# HG changeset patch # User Thomas Wuerthinger # Date 1306842107 -7200 # Node ID a75ef246fab3fc96d0c3c643c0368a39774c7b18 # Parent 1cd59ca9ac862b9272cfe9e901d2508c19b3df4c Removed last usage of anchor in the front-end. diff -r 1cd59ca9ac86 -r a75ef246fab3 graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java --- a/graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java Tue May 31 13:30:23 2011 +0200 +++ b/graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java Tue May 31 13:41:47 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;