diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-08-12 21:14:35 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-08-12 21:14:35 +0000 |
commit | 2198ba12b73a8e6801d13f25de38031da6df46b6 (patch) | |
tree | dd1dda4d0ba2fcf167bfd880c922c5deb32998da /lib/CodeGen/CodeGenFunction.h | |
parent | 34fae9cf27b19664f1f4526e195aff2299de2c40 (diff) |
Patch for synthesizing copy assignment operator.
WIP.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@78841 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index ece4f105dc..226c272c31 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -374,6 +374,12 @@ public: const FunctionDecl *FD, llvm::Function *Fn, const FunctionArgList &Args); + + void SynthesizeCXXCopyAssignment(const CXXMethodDecl *CD, + const FunctionDecl *FD, + llvm::Function *Fn, + const FunctionArgList &Args); + void SynthesizeDefaultConstructor(const CXXConstructorDecl *CD, const FunctionDecl *FD, llvm::Function *Fn, |