From a0d49dac263c8ad2451871ca90162bd1a1b92415 Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Sat, 18 Aug 2007 15:08:56 +0000 Subject: [PATCH] Typo. llvm-svn: 41168 --- llvm/lib/Transforms/Scalar/LICM.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Transforms/Scalar/LICM.cpp b/llvm/lib/Transforms/Scalar/LICM.cpp index ede3bd9dde63..7f4d783bdb67 100644 --- a/llvm/lib/Transforms/Scalar/LICM.cpp +++ b/llvm/lib/Transforms/Scalar/LICM.cpp @@ -265,7 +265,7 @@ bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) { // // Traverse the body of the loop in depth first order on the dominator tree so // that we are guaranteed to see definitions before we see uses. This allows - // us to sink instructions in one pass, without iteration. AFter sinking + // us to sink instructions in one pass, without iteration. After sinking // instructions, we perform another pass to hoist them out of the loop. // SinkRegion(DT->getNode(L->getHeader()));