From e6b43df5d3f3edb50967426ec39093b4f87cf3db Mon Sep 17 00:00:00 2001 From: Koichi Justin Sato Date: Fri, 4 Dec 2015 18:06:57 +0900 Subject: [PATCH] fix-typo --- lib/SILAnalysis/EscapeAnalysis.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/SILAnalysis/EscapeAnalysis.cpp b/lib/SILAnalysis/EscapeAnalysis.cpp index 8494d13ae325a..728af81a7e40c 100644 --- a/lib/SILAnalysis/EscapeAnalysis.cpp +++ b/lib/SILAnalysis/EscapeAnalysis.cpp @@ -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(SinglePred->getTerminator()); if (TAI && BB == TAI->getNormalBB())