aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/DeadArgumentElimination.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-03-18 16:48:45 +0000
committerChris Lattner <sabre@nondot.org>2009-03-18 16:48:45 +0000
commita5affdcf4cdae48ce1e20a42f8dec6fb6f1c3495 (patch)
treee6f9214b38eb4b400f0ea04b75b109cb1a96bdee /lib/Transforms/IPO/DeadArgumentElimination.cpp
parentb44b3666f9b7a6c710f3bad0c4993788963759e3 (diff)
aha, DAE does have to think about PHI nodes. Many thanks to "Dr Evil" (aka Duncan)
for pointing this out :) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67212 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO/DeadArgumentElimination.cpp')
-rw-r--r--lib/Transforms/IPO/DeadArgumentElimination.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Transforms/IPO/DeadArgumentElimination.cpp b/lib/Transforms/IPO/DeadArgumentElimination.cpp
index ab8df69845..666db7e8d7 100644
--- a/lib/Transforms/IPO/DeadArgumentElimination.cpp
+++ b/lib/Transforms/IPO/DeadArgumentElimination.cpp
@@ -803,9 +803,9 @@ bool DAE::RemoveDeadStuffFromFunction(Function *F) {
" must have been a struct!");
Instruction *InsertPt = Call;
if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
- InsertPt = II->getNormalDest()->begin();
- assert(!isa<PHINode>(InsertPt) &&
- "Can't have a use of the invoke value if the edge is critical");
+ BasicBlock::iterator IP = II->getNormalDest()->begin();
+ while (isa<PHINode>(IP)) ++IP;
+ InsertPt = IP;
}
// We used to return a struct. Instead of doing smart stuff with all the