diff options
author | Anders Carlsson <andersca@mac.com> | 2009-09-27 18:58:34 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-09-27 18:58:34 +0000 |
commit | 52d78a518a6640fa242f64b8616cf1a2dc2013c0 (patch) | |
tree | 8d92b5bd08ea3a23bf060b845423ccfdfc9b6f2b /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 336e2bd91bfc58553b37ac55d41241ca8cd501d2 (diff) | |
download | bcm5719-llvm-52d78a518a6640fa242f64b8616cf1a2dc2013c0.tar.gz bcm5719-llvm-52d78a518a6640fa242f64b8616cf1a2dc2013c0.zip |
CodeGen for try statements. (We just emit the body for now).
llvm-svn: 82910
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 6b6b1494e49..73cac244311 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -40,6 +40,7 @@ namespace llvm { namespace clang { class ASTContext; class CXXDestructorDecl; + class CXXTryStmt; class Decl; class EnumConstantDecl; class FunctionDecl; @@ -711,6 +712,8 @@ public: void EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S); void EmitObjCAtSynchronizedStmt(const ObjCAtSynchronizedStmt &S); + void EmitCXXTryStmt(const CXXTryStmt &S); + //===--------------------------------------------------------------------===// // LValue Expression Emission //===--------------------------------------------------------------------===// |