terminate doesn't throw.

llvm-svn: 90308
diff --git a/clang/lib/CodeGen/CGException.cpp b/clang/lib/CodeGen/CGException.cpp
index 85d02bb..c93f2b7 100644
--- a/clang/lib/CodeGen/CGException.cpp
+++ b/clang/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.