diff options
author | Anders Carlsson <andersca@mac.com> | 2009-05-30 23:23:33 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-05-30 23:23:33 +0000 |
commit | b58d017f2b9eeed33f2ab3ede968b89cf5296bf2 (patch) | |
tree | 7001b9fe49bc4197b0c286af6546b9749e384e23 /lib/CodeGen/CodeGenFunction.h | |
parent | 75bbb97f6e413633f2537e42f90547ccac559fde (diff) |
More temporary support.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72648 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index d7d6c729ad..4411348a58 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -653,7 +653,8 @@ public: LValue EmitBlockDeclRefLValue(const BlockDeclRefExpr *E); LValue EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E); - + LValue EmitCXXConstructLValue(const CXXConstructExpr *E); + LValue EmitObjCMessageExprLValue(const ObjCMessageExpr *E); LValue EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E); LValue EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E); @@ -783,6 +784,10 @@ public: void EmitCXXConstructExpr(llvm::Value *Dest, const CXXConstructExpr *E); + RValue EmitCXXExprWithTemporaries(const CXXExprWithTemporaries *E, + llvm::Value *AggLoc = 0, + bool isAggLocVolatile = false); + //===--------------------------------------------------------------------===// // Internal Helpers //===--------------------------------------------------------------------===// |