summaryrefslogtreecommitdiff
path: root/lib/Transforms
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-01-15 21:55:02 +0000
committerBob Wilson <bob.wilson@apple.com>2010-01-15 21:55:02 +0000
commit5cd8770412f98f6e6416c439e01222b3643b9e22 (patch)
tree1eed8a716eb87204ee7cca868471568ffd13cbed /lib/Transforms
parente6a5ddd0fabfa333c88ded0d7a69074d64758f3c (diff)
downloadllvm-5cd8770412f98f6e6416c439e01222b3643b9e22.tar.gz
llvm-5cd8770412f98f6e6416c439e01222b3643b9e22.tar.bz2
llvm-5cd8770412f98f6e6416c439e01222b3643b9e22.tar.xz
Fix a comment typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93560 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/Utils/LoopSimplify.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/LoopSimplify.cpp b/lib/Transforms/Utils/LoopSimplify.cpp
index 7fcc5f748a..e81b77974a 100644
--- a/lib/Transforms/Utils/LoopSimplify.cpp
+++ b/lib/Transforms/Utils/LoopSimplify.cpp
@@ -232,7 +232,7 @@ ReprocessLoop:
PN->eraseFromParent();
}
- // If this loop has muliple exits and the exits all go to the same
+ // If this loop has multiple exits and the exits all go to the same
// block, attempt to merge the exits. This helps several passes, such
// as LoopRotation, which do not support loops with multiple exits.
// SimplifyCFG also does this (and this code uses the same utility