From 2864ce6065a0252a398caf323189c627f9cf28e1 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 24 Jun 2008 18:00:21 +0000 Subject: [PATCH] Fix a typo in a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52687 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/LoopIndexSplit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/Scalar/LoopIndexSplit.cpp b/lib/Transforms/Scalar/LoopIndexSplit.cpp index 5faec97a971..45d4900ca86 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().