forked from OSchip/llvm-project
parent
8983f17ba0
commit
bcdb46830b
|
@ -726,6 +726,10 @@ void RetainSummaryManager::InitializeMethSummaries() {
|
|||
// Create the "release" selector.
|
||||
Summ = getPersistentSummary(E, isGCEnabled() ? DoNothing : DecRef);
|
||||
ObjCMethSummaries[ GetNullarySelector("release", Ctx) ] = Summ;
|
||||
|
||||
// Create the "drain" selector.
|
||||
Summ = getPersistentSummary(E, isGCEnabled() ? DoNothing : DecRef);
|
||||
ObjCMethSummaries[ GetNullarySelector("drain", Ctx) ] = Summ;
|
||||
|
||||
// Create the "autorelease" selector.
|
||||
Summ = getPersistentSummary(E, isGCEnabled() ? DoNothing : StopTracking);
|
||||
|
|
Loading…
Reference in New Issue