[llvm] Calculate KnownBits from Metadata correctly for vector loads (PR #128908)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 24 19:19:38 PDT 2025
================
@@ -690,6 +690,13 @@ void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
"Can only promote loads to same size type");
+ // If the range metadata type does not match the legalized memory
+ // operation type, remove the range metadata.
+ if (const MDNode *MD = LD->getRanges()) {
+ ConstantInt *Lower = mdconst::extract<ConstantInt>(MD->getOperand(0));
+ if (Lower->getBitWidth() != NVT.getScalarSizeInBits())
----------------
arsenm wrote:
Should also drop if the element type isn't integer
https://github.com/llvm/llvm-project/pull/128908
More information about the llvm-commits
mailing list