]> granicus.if.org Git - clang/commitdiff
Try/catch statements seem to be working well enough to turn on.
authorMike Stump <mrs@apple.com>
Fri, 4 Dec 2009 03:57:07 +0000 (03:57 +0000)
committerMike Stump <mrs@apple.com>
Fri, 4 Dec 2009 03:57:07 +0000 (03:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90538 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGException.cpp

index 5f54935361c19ed80f4f3014ba9de47774f510c1..2374d91a2bfe4a45babfd521344600a83d96038a 100644 (file)
@@ -266,7 +266,7 @@ void CodeGenFunction::EmitCXXThrowExpr(const CXXThrowExpr *E) {
 }
 
 void CodeGenFunction::EmitCXXTryStmt(const CXXTryStmt &S) {
-  if (1) {
+  if (0) {
     EmitStmt(S.getTryBlock());
     return;
   }