mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Change method name ClearRefCount => ClearKnownPositiveRefCount to match the name of the member that it is modifying.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177818 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4df66f74d9
commit
31881c235f
@ -454,7 +454,7 @@ namespace {
|
|||||||
KnownPositiveRefCount = true;
|
KnownPositiveRefCount = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ClearRefCount() {
|
void ClearKnownPositiveRefCount() {
|
||||||
KnownPositiveRefCount = false;
|
KnownPositiveRefCount = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1574,7 +1574,7 @@ ObjCARCOpt::VisitInstructionBottomUp(Instruction *Inst,
|
|||||||
|
|
||||||
// Check for possible releases.
|
// Check for possible releases.
|
||||||
if (CanAlterRefCount(Inst, Ptr, PA, Class)) {
|
if (CanAlterRefCount(Inst, Ptr, PA, Class)) {
|
||||||
S.ClearRefCount();
|
S.ClearKnownPositiveRefCount();
|
||||||
switch (Seq) {
|
switch (Seq) {
|
||||||
case S_Use:
|
case S_Use:
|
||||||
S.SetSeq(S_CanRelease);
|
S.SetSeq(S_CanRelease);
|
||||||
@ -1732,7 +1732,7 @@ ObjCARCOpt::VisitInstructionTopDown(Instruction *Inst,
|
|||||||
Arg = GetObjCArg(Inst);
|
Arg = GetObjCArg(Inst);
|
||||||
|
|
||||||
PtrState &S = MyStates.getPtrTopDownState(Arg);
|
PtrState &S = MyStates.getPtrTopDownState(Arg);
|
||||||
S.ClearRefCount();
|
S.ClearKnownPositiveRefCount();
|
||||||
|
|
||||||
switch (S.GetSeq()) {
|
switch (S.GetSeq()) {
|
||||||
case S_Retain:
|
case S_Retain:
|
||||||
@ -1778,7 +1778,7 @@ ObjCARCOpt::VisitInstructionTopDown(Instruction *Inst,
|
|||||||
|
|
||||||
// Check for possible releases.
|
// Check for possible releases.
|
||||||
if (CanAlterRefCount(Inst, Ptr, PA, Class)) {
|
if (CanAlterRefCount(Inst, Ptr, PA, Class)) {
|
||||||
S.ClearRefCount();
|
S.ClearKnownPositiveRefCount();
|
||||||
switch (Seq) {
|
switch (Seq) {
|
||||||
case S_Retain:
|
case S_Retain:
|
||||||
S.SetSeq(S_CanRelease);
|
S.SetSeq(S_CanRelease);
|
||||||
|
Loading…
Reference in New Issue
Block a user