[Mlir-commits] [mlir] [mlir] Add Memref Normalization support for reinterpret_cast op (PR #133417)
Uday Bondhugula
llvmlistbot at llvm.org
Fri Apr 4 07:59:10 PDT 2025
================
@@ -1846,6 +1785,95 @@ LogicalResult mlir::affine::normalizeMemRef(AllocLikeOp *allocOp) {
return success();
}
+LogicalResult
+mlir::affine::normalizeMemRef(memref::ReinterpretCastOp *reinterpretCastOp) {
----------------
bondhugula wrote:
This is the wrong signature (and for the remaining methods as well). Derived op types are to be passed by value. It's an input.
https://github.com/llvm/llvm-project/pull/133417
More information about the Mlir-commits
mailing list