diff options
author | Mike Stump <mrs@apple.com> | 2009-12-04 03:57:07 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-12-04 03:57:07 +0000 |
commit | fffefeb8ecafa1e1a191a276361fd5acaa0f8c5e (patch) | |
tree | 31ef0d1d381d734b022adccc6002966bdb0dc2b1 /lib/CodeGen/CGException.cpp | |
parent | ce0339032a08012cdda99c3e8660b9fc4dfd9baf (diff) |
Try/catch statements seem to be working well enough to turn on.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90538 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGException.cpp')
-rw-r--r-- | lib/CodeGen/CGException.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGException.cpp b/lib/CodeGen/CGException.cpp index 5f54935361..2374d91a2b 100644 --- a/lib/CodeGen/CGException.cpp +++ b/lib/CodeGen/CGException.cpp @@ -266,7 +266,7 @@ void CodeGenFunction::EmitCXXThrowExpr(const CXXThrowExpr *E) { } void CodeGenFunction::EmitCXXTryStmt(const CXXTryStmt &S) { - if (1) { + if (0) { EmitStmt(S.getTryBlock()); return; } |