terminate doesn't throw.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90308 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/CGException.cpp b/lib/CodeGen/CGException.cpp
index 85d02bb..c93f2b7 100644
--- a/lib/CodeGen/CGException.cpp
+++ b/lib/CodeGen/CGException.cpp
@@ -440,6 +440,7 @@
       llvm::CallInst *TerminateCall = 
         Builder.CreateCall(getTerminateFn(*this));
       TerminateCall->setDoesNotReturn();
+      TerminateCall->setDoesNotThrow();
       Builder.CreateUnreachable();
 
       // Clear the insertion point to indicate we are in unreachable code.