aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-10-31 14:35:39 +0000
committerDan Gohman <gohman@apple.com>2007-10-31 14:35:39 +0000
commita24b294e740b552c23bc4bbeda694c4d995d4134 (patch)
treef224b0a9ce4f669cb97147a74634e484b881d591
parentfc05f402ea22e8a9ae465d209b65be7e857a89ff (diff)
Fix a typo in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43553 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Transforms/Scalar/LICM.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/LICM.cpp b/lib/Transforms/Scalar/LICM.cpp
index 8a094aa967..5311a7f04f 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;