[Mlir-commits] [mlir] [MLIR][Python] Impl XOpInterface(s) from Python, with X=Transform and X=MemoryEffects (PR #176920)
Rolf Morel
llvmlistbot at llvm.org
Wed Jan 28 05:24:56 PST 2026
================
@@ -575,7 +575,7 @@ MutableOperandRange MutableOperandRangeRange::dereference(const OwnerT &object,
ResultRange::ResultRange(OpResult result)
: ResultRange(static_cast<detail::OpResultImpl *>(Value(result).getImpl()),
- 1) {}
+ 0) {}
----------------
rolfmorel wrote:
You are right! Reverted now.
I had segfaults that went away with this change (as I thought it was specifying the relative index into the underlying array). Issue at the time was likely to due bad casts.
https://github.com/llvm/llvm-project/pull/176920
More information about the Mlir-commits
mailing list