From 083cf12f4a977657761b8f03bd69ed3c7fa36574 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Aslan?= Date: Thu, 3 Dec 2015 20:14:09 +0200 Subject: [PATCH] Fixed `always` 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 cb8415ba8cdc8..8494d13ae325a 100644 --- a/lib/SILAnalysis/EscapeAnalysis.cpp +++ b/lib/SILAnalysis/EscapeAnalysis.cpp @@ -1286,7 +1286,7 @@ void EscapeAnalysis::recompute() { // Limit the total number of iterations. First to limit compile time, // second to make sure that the loop terminates. Theoretically this - // should alwasy be the case, but who knows? + // should always be the case, but who knows? if (Iteration >= MaxGraphMerges) { DEBUG(llvm::dbgs() << " finalize " << FInfo->Graph.F->getName() << '\n');