From ab066bccf7dd6f43d878d4c88d828c7a2ad9ecc0 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Tue, 27 Jun 2023 11:37:05 +0100 Subject: [PATCH] Fix "the the" duplicate typo in comment. NFC. --- llvm/lib/Analysis/ValueTracking.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Analysis/ValueTracking.cpp b/llvm/lib/Analysis/ValueTracking.cpp index 5931032..482cf64 100644 --- a/llvm/lib/Analysis/ValueTracking.cpp +++ b/llvm/lib/Analysis/ValueTracking.cpp @@ -2777,7 +2777,7 @@ bool isKnownNonZero(const Value *V, const APInt &DemandedElts, unsigned Depth, // If there exists any subset of X (sX) and subset of Y (sY) s.t sX * sY is // non-zero, then X * Y is non-zero. We can find sX and sY by just taking - // the the lowest known One of X and Y. If they are non-zero, the result + // the lowest known One of X and Y. If they are non-zero, the result // must be non-zero. We can check if LSB(X) * LSB(Y) != 0 by doing // X.CountLeadingZeros + Y.CountLeadingZeros < BitWidth. return (XKnown.countMaxTrailingZeros() + YKnown.countMaxTrailingZeros()) < -- 2.7.4