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 | 1d849219a5b44aa25008a83fa8fbfbd385f6a3ff (patch) | |
tree | 8cb0d410c81a29428450e1e2a538414a01ede463 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | fb1654d4674b01fc5afd48c8b199f9d71a40c5a5 (diff) | |
download | bcm5719-llvm-1d849219a5b44aa25008a83fa8fbfbd385f6a3ff.tar.gz bcm5719-llvm-1d849219a5b44aa25008a83fa8fbfbd385f6a3ff.zip |
Add codegen support for exception specifications. WIP.
llvm-svn: 90817
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 1a49c944a2e..ead2b5df7d3 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/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); |