[llvm] Ensure KnownBits passed when calculating from range md has right size (PR #132985)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 20:12:11 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!");
----------------
arsenm wrote:
Move this up and query from Range.getBitWidth()?
https://github.com/llvm/llvm-project/pull/132985
More information about the llvm-commits
mailing list