diff options
Diffstat (limited to 'llvm/lib/Transforms/Scalar/LowerInvoke.cpp')
| -rw-r--r-- | llvm/lib/Transforms/Scalar/LowerInvoke.cpp | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/llvm/lib/Transforms/Scalar/LowerInvoke.cpp b/llvm/lib/Transforms/Scalar/LowerInvoke.cpp index d74633b82b8..2b0e16c17ba 100644 --- a/llvm/lib/Transforms/Scalar/LowerInvoke.cpp +++ b/llvm/lib/Transforms/Scalar/LowerInvoke.cpp @@ -259,8 +259,11 @@ void LowerInvoke::rewriteExpensiveInvoke(InvokeInst *II, unsigned InvokeNo,    // Insert a store of the invoke num before the invoke and store zero into the    // location afterward.    new StoreInst(InvokeNoC, InvokeNum, true, II);  // volatile -  new StoreInst(Constant::getNullValue(Type::UIntTy), InvokeNum, false, -                II->getNormalDest()->begin());  // nonvolatile. +   +  BasicBlock::iterator NI = II->getNormalDest()->begin(); +  while (isa<PHINode>(NI)) ++NI; +  // nonvolatile. +  new StoreInst(Constant::getNullValue(Type::UIntTy), InvokeNum, false, NI);    // Add a switch case to our unwind block.    CatchSwitch->addCase(InvokeNoC, II->getUnwindDest()); | 

