diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-08-13 21:09:41 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-08-13 21:09:41 +0000 |
commit | 4985b33fd7202de05e08e364189a716dead9ec45 (patch) | |
tree | 635472fee4f933fc4d2417a4545a02b31deecb2d /clang/lib/CodeGen/CodeGenModule.h | |
parent | df743ae60322bc4c75d5df6213565bc4c9c8b8af (diff) | |
download | bcm5719-llvm-4985b33fd7202de05e08e364189a716dead9ec45.tar.gz bcm5719-llvm-4985b33fd7202de05e08e364189a716dead9ec45.zip |
Patch to force synthesis of copy assignment operator
function in the order according to c++03. ir-gen
for copy assignment in the trivial case and the first
test case.
llvm-svn: 78938
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 449d29cc0d5..8f69df51a51 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -398,6 +398,7 @@ private: const llvm::PointerType *PTy, const VarDecl *D); void DeferredCopyConstructorToEmit(GlobalDecl D); + void DeferredCopyAssignmentToEmit(GlobalDecl D); /// SetCommonAttributes - Set attributes which are common to any /// form of a global definition (alias, Objective-C method, |