diff options
author | John McCall <rjmccall@apple.com> | 2010-07-07 06:56:46 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-07-07 06:56:46 +0000 |
commit | 59a7000a79118e4c140885ccbb2ac6a686a73092 (patch) | |
tree | 803331196f70138a85888e168a5ce1721c6c425b /lib/CodeGen/CodeGenFunction.h | |
parent | 8b5dec3002bd3e17061a8bf1fc35ba82912ec768 (diff) |
Teach function-try-blocks on constructors and destructors to implicitly
rethrow. Fixes rdar://problem/7696603
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107757 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 00a0936044..3e4cd3bbe2 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -1102,9 +1102,8 @@ public: void EmitObjCAtSynchronizedStmt(const ObjCAtSynchronizedStmt &S); llvm::Constant *getUnwindResumeOrRethrowFn(); - struct CXXTryStmtInfo {}; - CXXTryStmtInfo EnterCXXTryStmt(const CXXTryStmt &S); - void ExitCXXTryStmt(const CXXTryStmt &S, CXXTryStmtInfo Info); + void EnterCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock = false); + void ExitCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock = false); void EmitCXXTryStmt(const CXXTryStmt &S); |