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 | 24f38969d5a2148576a5405d831c16bab51dcc77 (patch) | |
tree | 341a27ab186ed281d02c02c252a621e5d82f8ca8 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | b8be93fc92c684a331a1ad40b30c77de3c18a67a (diff) | |
download | bcm5719-llvm-24f38969d5a2148576a5405d831c16bab51dcc77.tar.gz bcm5719-llvm-24f38969d5a2148576a5405d831c16bab51dcc77.zip |
ir-gen for initialization, in synthesize copy constructor,
of base/field which have trivial copy constructor.
llvm-svn: 78516
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index d18217fcc9e..5b6826f57fb 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/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, |