From: Dan Gohman Date: Wed, 31 Oct 2007 14:35:39 +0000 (+0000) Subject: Fix a typo in a comment. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a24b294e740b552c23bc4bbeda694c4d995d4134;p=oota-llvm.git Fix a typo in a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43553 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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;