diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-04-28 21:28:56 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-04-28 21:28:56 +0000 |
commit | 109dfc6ca6652f60c55ed0f2631aebf323d0200d (patch) | |
tree | d61db3de42d880a2bee63603685277372a01e326 /lib/CodeGen/CodeGenFunction.h | |
parent | 60909e1242f19aa8b1b87110aaa8e394f329ae96 (diff) |
IRGen for initialization/destruction of
ivar class objects (NeXt runtime).
(radar 7900343).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102533 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index e4e98efbfa..0cd0bd9fe3 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -473,6 +473,8 @@ public: /// GenerateObjCGetter - Synthesize an Objective-C property getter function. void GenerateObjCGetter(ObjCImplementationDecl *IMP, const ObjCPropertyImplDecl *PID); + void GenerateObjCCtorDtorMethod(ObjCImplementationDecl *IMP, + ObjCMethodDecl *MD, bool ctor); /// GenerateObjCSetter - Synthesize an Objective-C property setter function /// for the given property. |