Skip to content

Commit c959ce2

Browse files
committed
Merge pull request swiftlang#160 from justin999/fix-typo-on-EscapeAnalysis-1
fix-typo
2 parents 8932511 + e6b43df commit c959ce2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/SILAnalysis/EscapeAnalysis.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ static bool linkBBArgs(SILBasicBlock *BB) {
879879
if (BB == &BB->getParent()->front())
880880
return false;
881881
// We don't need to link to the try_apply's normal result argument, because
882-
// we handle it separatly in setAllEscaping() and mergeCalleeGraph().
882+
// we handle it separately in setAllEscaping() and mergeCalleeGraph().
883883
if (SILBasicBlock *SinglePred = BB->getSinglePredecessor()) {
884884
auto *TAI = dyn_cast<TryApplyInst>(SinglePred->getTerminator());
885885
if (TAI && BB == TAI->getNormalBB())

0 commit comments

Comments
 (0)