[Mlir-commits] [mlir] [mlir][NVVM] Set SpecialRangeableRegisterOp default int range to max (PR #174544)
Guray Ozen
llvmlistbot at llvm.org
Tue Jan 6 09:29:10 PST 2026
================
@@ -4544,6 +4544,8 @@ static void nvvmInferResultRanges(Operation *op, Value result,
if (auto rangeAttr = op->getAttrOfType<LLVM::ConstantRangeAttr>("range")) {
setResultRanges(result, {rangeAttr.getLower(), rangeAttr.getUpper(),
rangeAttr.getLower(), rangeAttr.getUpper()});
+ } else {
----------------
grypp wrote:
Can we please add test for that?
https://github.com/llvm/llvm-project/pull/174544
More information about the Mlir-commits
mailing list