summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r--llvm/lib/Transforms/Scalar/LowerInvoke.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/LowerInvoke.cpp b/llvm/lib/Transforms/Scalar/LowerInvoke.cpp
index fe22b4be847..96d5b98c6bd 100644
--- a/llvm/lib/Transforms/Scalar/LowerInvoke.cpp
+++ b/llvm/lib/Transforms/Scalar/LowerInvoke.cpp
@@ -283,7 +283,9 @@ bool LowerInvoke::insertExpensiveEHSupport(Function &F) {
// Create the receiver block if there is a critical edge to the normal
// destination.
SplitCriticalEdge(II, 0, this);
- Instruction *InsertLoc = II->getNormalDest()->begin();
+ BasicBlock::iterator InsertLoc = II->getNormalDest()->begin();
+ while (isa<PHINode>(InsertLoc)) ++InsertLoc;
+
// Insert a normal call instruction on the normal execution path.
std::string Name = II->getName(); II->setName("");
OpenPOWER on IntegriCloud