diff options
author | Anders Carlsson <andersca@mac.com> | 2010-04-24 22:43:39 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-04-24 22:43:39 +0000 |
commit | f500de5bdfa1ab8e6944bb3519c2ae27f87c414b (patch) | |
tree | c0984a2581394297242571a026d3a5d6185566ee /lib/CodeGen/CodeGenFunction.h | |
parent | 6444c417b4e8eaf1893c641f5a246f5adbb761c4 (diff) |
More cleanup.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102282 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index d4f49b344e..3e27e94cd5 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -803,13 +803,12 @@ public: void EmitClassAggrMemberwiseCopy(llvm::Value *DestValue, llvm::Value *SrcValue, - const ArrayType *Array, - const CXXRecordDecl *BaseClassDecl, - QualType Ty); + const ConstantArrayType *Array, + const CXXRecordDecl *ClassDecl); void EmitClassAggrCopyAssignment(llvm::Value *DestValue, llvm::Value *SrcValue, - const ArrayType *Array, + const ConstantArrayType *Array, const CXXRecordDecl *BaseClassDecl, QualType Ty); |