diff options
author | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2018-01-19 10:55:29 +0000 |
---|---|---|
committer | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2018-01-19 10:55:29 +0000 |
commit | d24ddcd6c48d29035016a75c6d7ff73d0669e43e (patch) | |
tree | a7a90a659342a44b1b557c5346a2e17c41402eba /llvm/lib/Transforms/Utils/LoopUtils.cpp | |
parent | 5045eaf9b961b85f383c9270b1e0e61ed206939b (diff) | |
download | llvm-d24ddcd6c48d29035016a75c6d7ff73d0669e43e.zip llvm-d24ddcd6c48d29035016a75c6d7ff73d0669e43e.tar.gz llvm-d24ddcd6c48d29035016a75c6d7ff73d0669e43e.tar.bz2 |
[NFC] fix trivial typos in comments
"the the" -> "the"
llvm-svn: 322934
Diffstat (limited to 'llvm/lib/Transforms/Utils/LoopUtils.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/LoopUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<unsigned> 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<BranchInst>(L->getLoopLatch()->getTerminator()); if (!LatchBR || LatchBR->getNumSuccessors() != 2) |