comparison graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java @ 2836:a75ef246fab3

Removed last usage of anchor in the front-end.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Tue, 31 May 2011 13:41:47 +0200
parents 1cd59ca9ac86
children 7b5831f0e913
comparison
equal deleted inserted replaced
2833:1cd59ca9ac86 2836:a75ef246fab3
394 currentExceptionObject = exception; 394 currentExceptionObject = exception;
395 } 395 }
396 FrameState stateWithException = entryState.duplicateModified(bci, CiKind.Void, currentExceptionObject); 396 FrameState stateWithException = entryState.duplicateModified(bci, CiKind.Void, currentExceptionObject);
397 397
398 Instruction successor = createTarget(dispatchBlock, stateWithException); 398 Instruction successor = createTarget(dispatchBlock, stateWithException);
399 Anchor end = new Anchor(successor, graph); 399 currentNext.setNext(successor);
400 currentNext.setNext(end);
401 return entry; 400 return entry;
402 } 401 }
403 return null; 402 return null;
404 } 403 }
405 404