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 | de7d4c264a29ffabf6dcf1d899482f36735fa8e7 (patch) | |
tree | 098e05aa9934daea65593e9ff81553e8d085ba54 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | b4c6965da3a74070188f90a73d57bc4bfe9ec72f (diff) | |
download | bcm5719-llvm-de7d4c264a29ffabf6dcf1d899482f36735fa8e7.tar.gz bcm5719-llvm-de7d4c264a29ffabf6dcf1d899482f36735fa8e7.zip |
Patch for synthesizing copy assignment operator.
WIP.
llvm-svn: 78841
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index ece4f105dc2..226c272c318 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/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, |