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 | 8c1253b4c236683523d95a7051ef87c400f964b8 (patch) | |
tree | ee371c67ea5a366c95cccd73e4cd6e243ecdb6c4 /clang/lib/CodeGen/CGException.cpp | |
parent | 2ab55765f7bdd91263252c7b2945b50d666b0b8d (diff) | |
download | bcm5719-llvm-8c1253b4c236683523d95a7051ef87c400f964b8.tar.gz bcm5719-llvm-8c1253b4c236683523d95a7051ef87c400f964b8.zip |
Try/catch statements seem to be working well enough to turn on.
llvm-svn: 90538
Diffstat (limited to 'clang/lib/CodeGen/CGException.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGException.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGException.cpp b/clang/lib/CodeGen/CGException.cpp index 5f54935361c..2374d91a2bf 100644 --- a/clang/lib/CodeGen/CGException.cpp +++ b/clang/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; } |