diff options
author | Anders Carlsson <andersca@mac.com> | 2010-04-25 00:52:09 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-04-25 00:52:09 +0000 |
commit | 8e142ccf1196c9ae31f10f9caa97670e343971e7 (patch) | |
tree | a0a820e33ceb26a8f147892319adbb9596956fc7 /lib/CodeGen/CodeGenFunction.h | |
parent | 4154e0b1a5d03cbe4836e381c7d6187b7a0a200c (diff) |
Revert enough of my patches to fix self-host again :(
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102289 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index b862ef5088..e4e98efbfa 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -804,17 +804,20 @@ public: void EmitClassAggrMemberwiseCopy(llvm::Value *DestValue, llvm::Value *SrcValue, - const ConstantArrayType *Array, - const CXXRecordDecl *ClassDecl); + const ArrayType *Array, + const CXXRecordDecl *BaseClassDecl, + QualType Ty); void EmitClassAggrCopyAssignment(llvm::Value *DestValue, llvm::Value *SrcValue, - const ConstantArrayType *Array, + const ArrayType *Array, const CXXRecordDecl *BaseClassDecl, QualType Ty); void EmitClassMemberwiseCopy(llvm::Value *DestValue, llvm::Value *SrcValue, - const CXXRecordDecl *ClassDecl); + const CXXRecordDecl *ClassDecl, + const CXXRecordDecl *BaseClassDecl, + QualType Ty); void EmitClassCopyAssignment(llvm::Value *DestValue, llvm::Value *SrcValue, const CXXRecordDecl *ClassDecl, |