[gardening] Fix recently introduced typo: "a executable" → "an executable"

[gardening] Fix recently introduced typo: "a offset" → "an offset"
[gardening] Fix recently introduced typo: "accessiblity" → "accessibility"
[gardening] Fix recently introduced typo: "cant" → "can't"
[gardening] Fix recently introduced typo: "inteference" → "interference"
[gardening] Fix recently introduced typo: "unsatified" → "unsatisfied"
[gardening] Remove accidental space.
This commit is contained in:
practicalswift
2016-04-24 21:55:57 +02:00
parent 4e9d2b77a2
commit 9a078b54ef
9 changed files with 17 additions and 17 deletions

View File

@@ -234,7 +234,7 @@ static bool canTerminatorUseValue(TermInst *TI, SILValue Ptr,
}
bool swift::mayHaveSymmetricInteference(SILInstruction *User, SILValue Ptr, AliasAnalysis *AA) {
bool swift::mayHaveSymmetricInterference(SILInstruction *User, SILValue Ptr, AliasAnalysis *AA) {
// Check whether releasing this value can call deinit and interfere with User.
if (AA->mayValueReleaseInterfereWithInstruction(User, Ptr))
return true;
@@ -340,7 +340,7 @@ valueHasARCUsesInInstructionRange(SILValue Op,
// Otherwise, until Start != End.
while (Start != End) {
// Check if Start can use Op in an ARC relevant way. If so, return true.
if (mayHaveSymmetricInteference(&*Start, Op, AA))
if (mayHaveSymmetricInterference(&*Start, Op, AA))
return Start;
// Otherwise, increment our iterator.
@@ -371,7 +371,7 @@ swift::valueHasARCUsesInReverseInstructionRange(SILValue Op,
// Otherwise, until End == Start.
while (Start != End) {
// Check if Start can use Op in an ARC relevant way. If so, return true.
if (mayHaveSymmetricInteference(&*End, Op, AA))
if (mayHaveSymmetricInterference(&*End, Op, AA))
return End;
// Otherwise, decrement our iterator.