From d24ddcd6c48d29035016a75c6d7ff73d0669e43e Mon Sep 17 00:00:00 2001 From: Hiroshi Inoue Date: Fri, 19 Jan 2018 10:55:29 +0000 Subject: [NFC] fix trivial typos in comments "the the" -> "the" llvm-svn: 322934 --- llvm/lib/Transforms/Utils/LoopUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Transforms/Utils/LoopUtils.cpp') diff --git a/llvm/lib/Transforms/Utils/LoopUtils.cpp b/llvm/lib/Transforms/Utils/LoopUtils.cpp index fab989c..3ea210d 100644 --- a/llvm/lib/Transforms/Utils/LoopUtils.cpp +++ b/llvm/lib/Transforms/Utils/LoopUtils.cpp @@ -1456,7 +1456,7 @@ Optional llvm::getLoopEstimatedTripCount(Loop *L) { if (!L->getExitingBlock()) return None; - // Get the branch weights for the the loop's backedge. + // Get the branch weights for the loop's backedge. BranchInst *LatchBR = dyn_cast(L->getLoopLatch()->getTerminator()); if (!LatchBR || LatchBR->getNumSuccessors() != 2) -- cgit v1.1