diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-08-08 23:32:22 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-08-08 23:32:22 +0000 |
commit | 942f4f33d02dba823594bd2d7b3d317cb01c74f8 (patch) | |
tree | f1507f680daf5b9c6d7638ae0a84de147473fc56 /lib/CodeGen/CodeGenFunction.h | |
parent | 89ed31d3f9eeb8ec77c284a5cf404a74bf5e7acf (diff) |
ir-gen for initialization, in synthesize copy constructor,
of base/field which have trivial copy constructor.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@78516 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index d18217fcc9..5b6826f57f 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -557,7 +557,8 @@ public: void EmitClassMemberwiseCopy(llvm::Value *DestValue, llvm::Value *SrcValue, const CXXRecordDecl *ClassDecl, - const CXXRecordDecl *BaseClassDecl); + const CXXRecordDecl *BaseClassDecl, + QualType Ty); void EmitCXXConstructorCall(const CXXConstructorDecl *D, CXXCtorType Type, llvm::Value *This, |