diff options
author | Anders Carlsson <andersca@mac.com> | 2009-05-03 17:47:16 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-05-03 17:47:16 +0000 |
commit | 31ccf377f4a676eb6c205b47eef435de616d5e2d (patch) | |
tree | bc7a79f24863f33a26b55ec46c1cf26eff46b721 /lib/CodeGen/CodeGenFunction.h | |
parent | ed4ec8f6d183c247a4528ff846669b02f2326185 (diff) |
Make codegen for constructors work again.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70785 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 3db7a2e09d..04c0026d8e 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -643,7 +643,6 @@ public: LValue EmitBlockDeclRefLValue(const BlockDeclRefExpr *E); LValue EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E); - LValue EmitCXXTemporaryObjectExprLValue(const CXXTemporaryObjectExpr *E); LValue EmitObjCMessageExprLValue(const ObjCMessageExpr *E); LValue EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E); @@ -756,8 +755,7 @@ public: void GenerateStaticCXXBlockVarDeclInit(const VarDecl &D, llvm::GlobalVariable *GV); - void EmitCXXTemporaryObjectExpr(llvm::Value *Dest, - const CXXTemporaryObjectExpr *E); + void EmitCXXConstructExpr(llvm::Value *Dest, const CXXConstructExpr *E); //===--------------------------------------------------------------------===// // Internal Helpers |