Remove some logic I thoughtlessly copied over

from the old ADCE implementation (there it was
correct because the transform was being done
for read-only functions).

llvm-svn: 44287
This commit is contained in:
Duncan Sands 2007-11-23 09:10:17 +00:00
parent a8fbde3f78
commit b23192f483
1 changed files with 0 additions and 3 deletions

View File

@ -88,9 +88,6 @@ static void ChangeToCall(InvokeInst *II) {
// Update PHI nodes in the unwind destination
II->getUnwindDest()->removePredecessor(BB);
BB->getInstList().erase(II);
if (NewCall->use_empty())
BB->getInstList().erase(NewCall);
}
/// IsNoReturn - Return true if the specified call is to a no-return function.