[llvm] Ensure KnownBits passed when calculating from range md has right size (PR #132985)

via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 28 04:55:06 PDT 2025


================
@@ -433,6 +433,10 @@ void llvm::computeKnownBitsFromRangeMetadata(const MDNode &Ranges,
     // The first CommonPrefixBits of all values in Range are equal.
     unsigned CommonPrefixBits =
         (Range.getUnsignedMax() ^ Range.getUnsignedMin()).countl_zero();
+    // BitWidth must equal the Ranges BitWidth for the correct number of high
+    // bits to be set.
+    assert(BitWidth == Lower->getBitWidth() &&
+           "Known bit width must match range bit width!");
----------------
LU-JOHN wrote:

Changed to Range.getBitWidth()

https://github.com/llvm/llvm-project/pull/132985


More information about the llvm-commits mailing list