Try/catch statements seem to be working well enough to turn on.

llvm-svn: 90538
This commit is contained in:
Mike Stump 2009-12-04 03:57:07 +00:00
parent 2ab55765f7
commit 8c1253b4c2
1 changed files with 1 additions and 1 deletions

View 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;
}