[Mlir-commits] [mlir] [mlir][memref] Fix builder after #132545 (PR #133760)
Matthias Springer
llvmlistbot at llvm.org
Mon Mar 31 10:38:38 PDT 2025
https://github.com/matthias-springer created https://github.com/llvm/llvm-project/pull/133760
There was a typo in the error message.
>From 88111e2fa304dcff221139443ff1c0242bf2bab4 Mon Sep 17 00:00:00 2001
From: Matthias Springer <mspringer at nvidia.com>
Date: Mon, 31 Mar 2025 19:37:47 +0200
Subject: [PATCH] [mlir][memref] Fix builder after #132545
---
mlir/lib/Dialect/MemRef/Transforms/RuntimeOpVerification.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mlir/lib/Dialect/MemRef/Transforms/RuntimeOpVerification.cpp b/mlir/lib/Dialect/MemRef/Transforms/RuntimeOpVerification.cpp
index 4537977226087..cd92026562da9 100644
--- a/mlir/lib/Dialect/MemRef/Transforms/RuntimeOpVerification.cpp
+++ b/mlir/lib/Dialect/MemRef/Transforms/RuntimeOpVerification.cpp
@@ -370,7 +370,7 @@ struct SubViewOpInterface
builder.create<cf::AssertOp>(
loc, lastPosInBounds,
RuntimeVerifiableOpInterface::generateErrorMessage(
- op, "Subview runs out-of-bounds along dimension" +
+ op, "subview runs out-of-bounds along dimension " +
std::to_string(i)));
}
}
More information about the Mlir-commits
mailing list