diff options
author | Mike Stump <mrs@apple.com> | 2009-12-07 23:38:24 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-12-07 23:38:24 +0000 |
commit | cce3d4f9812182ed4e551b7cf0fc86576be8d9c5 (patch) | |
tree | 8d638f713c292cd936b5484fb06e428e172fe471 /lib/CodeGen/CodeGenFunction.h | |
parent | 812c15476c9dddb72a8fd48deb7ca86402664b94 (diff) |
Add codegen support for exception specifications. WIP.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90817 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 1a49c944a2..ead2b5df7d 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -504,6 +504,12 @@ public: /// given temporary. void EmitFunctionEpilog(const CGFunctionInfo &FI, llvm::Value *ReturnValue); + /// EmitStartEHSpec - Emit the start of the exception spec. + void EmitStartEHSpec(const Decl *D); + + /// EmitEndEHSpec - Emit the end of the exception spec. + void EmitEndEHSpec(const Decl *D); + const llvm::Type *ConvertTypeForMem(QualType T); const llvm::Type *ConvertType(QualType T); |