diff options
author | Anders Carlsson <andersca@mac.com> | 2010-04-30 19:45:28 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-04-30 19:45:28 +0000 |
commit | 106d9ea61c7211b370c5b97a0288652c23da329a (patch) | |
tree | 6228c67640ab9ff7c6e0d05936dacc0e28e72883 /lib/CodeGen/CodeGenFunction.h | |
parent | 895162da2d52f4243f61081d7436de66af4503fc (diff) |
Remove an unnecessary parameter from EmitClassCopyAssignment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102747 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 3a8f60c4bd..f164cf5b84 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -822,8 +822,7 @@ public: QualType Ty); void EmitClassCopyAssignment(llvm::Value *DestValue, llvm::Value *SrcValue, - const CXXRecordDecl *ClassDecl, - const CXXRecordDecl *BaseClassDecl); + const CXXRecordDecl *ClassDecl); void EmitDelegateCXXConstructorCall(const CXXConstructorDecl *Ctor, CXXCtorType CtorType, |