diff options
author | Anders Carlsson <andersca@mac.com> | 2010-05-01 17:02:18 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-05-01 17:02:18 +0000 |
commit | 43db20e9550ecf2b215ddb76eaff82a3b466de96 (patch) | |
tree | 8bdb2b25682e94b7faa743356c1095f3185bd5b1 /lib/CodeGen/CodeGenFunction.h | |
parent | e2e69ef80ac09a489d00ce104e2e87867dc3dd26 (diff) |
Simplify EmitClassAggrMemberwiseCopy.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102848 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index b059488d67..58894ec9bf 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -807,9 +807,8 @@ 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, |