forked from OSchip/llvm-project
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:
parent
a8fbde3f78
commit
b23192f483
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue