Skip to content

Commit

Permalink
Merge pull request swiftlang#160 from justin999/fix-typo-on-EscapeAna…
Browse files Browse the repository at this point in the history
…lysis-1

fix-typo
  • Loading branch information
gribozavr committed Dec 4, 2015
2 parents 8932511 + e6b43df commit c959ce2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/SILAnalysis/EscapeAnalysis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ static bool linkBBArgs(SILBasicBlock *BB) {
if (BB == &BB->getParent()->front())
return false;
// We don't need to link to the try_apply's normal result argument, because
// we handle it separatly in setAllEscaping() and mergeCalleeGraph().
// we handle it separately in setAllEscaping() and mergeCalleeGraph().
if (SILBasicBlock *SinglePred = BB->getSinglePredecessor()) {
auto *TAI = dyn_cast<TryApplyInst>(SinglePred->getTerminator());
if (TAI && BB == TAI->getNormalBB())
Expand Down

0 comments on commit c959ce2

Please sign in to comment.