aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-06-24 18:00:21 +0000
committerDan Gohman <gohman@apple.com>2008-06-24 18:00:21 +0000
commit43e13bafe68c71d9104c1eb1eb5dbff608ef2995 (patch)
treea51909f1b9be0200d19b77530d6743893d30bd3b /lib/Transforms
parentc51652d1fa198c48cc6f323c7d55587b1eeecd97 (diff)
downloadexternal_llvm-43e13bafe68c71d9104c1eb1eb5dbff608ef2995.tar.gz
external_llvm-43e13bafe68c71d9104c1eb1eb5dbff608ef2995.tar.bz2
external_llvm-43e13bafe68c71d9104c1eb1eb5dbff608ef2995.zip
Fix a typo in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52687 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/Scalar/LoopIndexSplit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/LoopIndexSplit.cpp b/lib/Transforms/Scalar/LoopIndexSplit.cpp
index 5faec97a97..45d4900ca8 100644
--- a/lib/Transforms/Scalar/LoopIndexSplit.cpp
+++ b/lib/Transforms/Scalar/LoopIndexSplit.cpp
@@ -1399,7 +1399,7 @@ bool LoopIndexSplit::splitLoop(SplitInfo &SD) {
BasicBlock *SplitCondBlock = SD.SplitCondition->getParent();
- // Unable to handle triange loops at the moment.
+ // Unable to handle triangle loops at the moment.
// In triangle loop, split condition is in header and one of the
// the split destination is loop latch. If split condition is EQ
// then such loops are already handle in processOneIterationLoop().