diff options
| author | Nick Lewycky <nicholas@mxc.ca> | 2008-03-09 17:11:18 +0000 |
|---|---|---|
| committer | Nick Lewycky <nicholas@mxc.ca> | 2008-03-09 17:11:18 +0000 |
| commit | f336983bbcdc21fba7dcc02f4f6cfc06341b1e6d (patch) | |
| tree | 98b4a75e21e7daeb2b1fc0b486653b1fee18dcf4 /lib/Transforms | |
| parent | e2dc21aa1d0d2b7f5286ff1a45125b0f09c21726 (diff) | |
Braces belong here. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48111 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
| -rw-r--r-- | lib/Transforms/IPO/PruneEH.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Transforms/IPO/PruneEH.cpp b/lib/Transforms/IPO/PruneEH.cpp index fa8b95a2ad..9f9c2260af 100644 --- a/lib/Transforms/IPO/PruneEH.cpp +++ b/lib/Transforms/IPO/PruneEH.cpp @@ -185,8 +185,9 @@ bool PruneEH::SimplifyFunction(Function *F) { ++NumRemoved; MadeChange = true; - } else + } else { couldUnwind = true; + } for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ) if (CallInst *CI = dyn_cast<CallInst>(I++)) { |
