[Mlir-commits] [mlir] [mlir] ArithToLLVM: fix memref bitcast lowering (PR #125148)

Ivan Butygin llvmlistbot at llvm.org
Fri Jan 31 07:02:59 PST 2025


================
@@ -103,6 +103,11 @@ LogicalResult LLVM::detail::handleMultidimensionalVectors(
   return success();
 }
 
+static bool isVectorCompatibleType(Type type) {
----------------
Hardcode84 wrote:

It was using `LLVM::isCompatibleType` before, but it's too broad, I specifically want to limit this transform to scalar and vector types.

https://github.com/llvm/llvm-project/pull/125148


More information about the Mlir-commits mailing list