Change method name ClearRefCount => ClearKnownPositiveRefCount to match the name of the member that it is modifying.

llvm-svn: 177818
This commit is contained in:
Michael Gottesman 2013-03-23 05:46:19 +00:00
parent 6566d43207
commit 764b1cfced
1 changed files with 4 additions and 4 deletions

View File

@ -454,7 +454,7 @@ namespace {
KnownPositiveRefCount = true;
}
void ClearRefCount() {
void ClearKnownPositiveRefCount() {
KnownPositiveRefCount = false;
}
@ -1574,7 +1574,7 @@ ObjCARCOpt::VisitInstructionBottomUp(Instruction *Inst,
// Check for possible releases.
if (CanAlterRefCount(Inst, Ptr, PA, Class)) {
S.ClearRefCount();
S.ClearKnownPositiveRefCount();
switch (Seq) {
case S_Use:
S.SetSeq(S_CanRelease);
@ -1732,7 +1732,7 @@ ObjCARCOpt::VisitInstructionTopDown(Instruction *Inst,
Arg = GetObjCArg(Inst);
PtrState &S = MyStates.getPtrTopDownState(Arg);
S.ClearRefCount();
S.ClearKnownPositiveRefCount();
switch (S.GetSeq()) {
case S_Retain:
@ -1778,7 +1778,7 @@ ObjCARCOpt::VisitInstructionTopDown(Instruction *Inst,
// Check for possible releases.
if (CanAlterRefCount(Inst, Ptr, PA, Class)) {
S.ClearRefCount();
S.ClearKnownPositiveRefCount();
switch (Seq) {
case S_Retain:
S.SetSeq(S_CanRelease);