And again.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48112 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/IPO/PruneEH.cpp b/lib/Transforms/IPO/PruneEH.cpp
index 9f9c226..ec0558e 100644
--- a/lib/Transforms/IPO/PruneEH.cpp
+++ b/lib/Transforms/IPO/PruneEH.cpp
@@ -206,8 +206,9 @@
           MadeChange = true;
           ++NumUnreach;
           break;
-        } else if (!CI->doesNotThrow())
+        } else if (!CI->doesNotThrow()) {
           couldUnwind = true;
+        }
       }
 
     // Strip 'unwindTo' off of BBs that have no calls/invokes without nounwind.