diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2008-03-09 07:36:38 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2008-03-09 07:36:38 +0000 |
commit | db96ae9607ddca2e0627c8b87a160d61689663ca (patch) | |
tree | c1dbe64bb5a12ce6999d9f3777fdd378b7cad211 /lib/Transforms/Utils/SimplifyCFG.cpp | |
parent | 3b646de03668fed630f4e3fa9df56a7332a905e4 (diff) |
A BB that unwind_to an "unwind" inst is that same as one that doesn't unwind_to
at all.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48096 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/SimplifyCFG.cpp')
-rw-r--r-- | lib/Transforms/Utils/SimplifyCFG.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp index 61da0d998f..846c3bf9d9 100644 --- a/lib/Transforms/Utils/SimplifyCFG.cpp +++ b/lib/Transforms/Utils/SimplifyCFG.cpp @@ -1370,7 +1370,7 @@ bool llvm::SimplifyCFG(BasicBlock *BB) { new UnwindInst(Pred); // Use unwind. Changed = true; } - } else if (InvokeInst *II = dyn_cast<InvokeInst>(Pred->getTerminator())) + } else if (InvokeInst *II = dyn_cast<InvokeInst>(Pred->getTerminator())) { if (II->getUnwindDest() == BB) { // Insert a new branch instruction before the invoke, because this // is now a fall through... @@ -1388,6 +1388,9 @@ bool llvm::SimplifyCFG(BasicBlock *BB) { delete II; Changed = true; } + } else if (Pred->getUnwindDest() == BB) { + Pred->setUnwindDest(NULL); + } Preds.pop_back(); } |