commit | 8c1253b4c236683523d95a7051ef87c400f964b8 | [log] [tgz] |
---|---|---|
author | Mike Stump <mrs@apple.com> | Fri Dec 04 03:57:07 2009 +0000 |
committer | Mike Stump <mrs@apple.com> | Fri Dec 04 03:57:07 2009 +0000 |
tree | ee371c67ea5a366c95cccd73e4cd6e243ecdb6c4 | |
parent | 2ab55765f7bdd91263252c7b2945b50d666b0b8d [diff] [blame] |
Try/catch statements seem to be working well enough to turn on. llvm-svn: 90538
diff --git a/clang/lib/CodeGen/CGException.cpp b/clang/lib/CodeGen/CGException.cpp index 5f54935..2374d91 100644 --- a/clang/lib/CodeGen/CGException.cpp +++ b/clang/lib/CodeGen/CGException.cpp
@@ -266,7 +266,7 @@ } void CodeGenFunction::EmitCXXTryStmt(const CXXTryStmt &S) { - if (1) { + if (0) { EmitStmt(S.getTryBlock()); return; }