diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-08-16 19:36:17 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-08-16 19:36:17 +0000 |
commit | b193a414f13d7cfa2524a8149eff8d4871f8cbf6 (patch) | |
tree | 205f700a68e970dde9b3dde4a5a07cd42787accc /lib/CodeGen/CodeGenModule.h | |
parent | fe3010d09cec5cd06e31a3d57fe188a04d9bfa17 (diff) |
Patch toward synthesizing non-trivial destructors. WIP
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79199 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | lib/CodeGen/CodeGenModule.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h index 8f69df51a5..cb3f0ba687 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/lib/CodeGen/CodeGenModule.h @@ -399,6 +399,7 @@ private: const VarDecl *D); void DeferredCopyConstructorToEmit(GlobalDecl D); void DeferredCopyAssignmentToEmit(GlobalDecl D); + void DeferredDestructorToEmit(GlobalDecl D); /// SetCommonAttributes - Set attributes which are common to any /// form of a global definition (alias, Objective-C method, |