From a24b294e740b552c23bc4bbeda694c4d995d4134 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 31 Oct 2007 14:35:39 +0000 Subject: [PATCH] Fix a typo in a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43553 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/LICM.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/Scalar/LICM.cpp b/lib/Transforms/Scalar/LICM.cpp index 8a094aa9678..5311a7f04f3 100644 --- a/lib/Transforms/Scalar/LICM.cpp +++ b/lib/Transforms/Scalar/LICM.cpp @@ -802,7 +802,7 @@ void LICM::FindPromotableValuesInLoop( // If one use of value V inside the loop is safe then it is OK to promote // this value. On the otherside if there is not any unsafe use inside the - // looop then also it is OK to promote this value. Otherwise it is + // loop then also it is OK to promote this value. Otherwise it is // unsafe to promote this value. if (PointerOk) { bool oneSafeUse = false;