[Mlir-commits] [mlir] [mlir][vector] Fix parser of vector.transfer_read (PR #133721)
Andrzej WarzyĆski
llvmlistbot at llvm.org
Wed Apr 2 05:52:10 PDT 2025
================
@@ -525,6 +525,15 @@ func.func @test_vector.transfer_read(%arg0: memref<?x?xvector<2x3xf32>>) {
// -----
+func.func @test_vector.transfer_read(%arg1: memref<?xindex>) -> vector<3x4xi32> {
+ %c3_i32 = arith.constant 3 : i32
----------------
banach-space wrote:
Let's follow the style that's already used in this file and avoid encoding the type in the variable name. `%c3_i32` -> `%c3`.
https://github.com/llvm/llvm-project/pull/133721
More information about the Mlir-commits
mailing list