[Mlir-commits] [mlir] bc3b1b0 - [mlir][memref] Fix build after #132545 (#133760)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Mon Mar 31 10:38:58 PDT 2025


Author: Matthias Springer
Date: 2025-03-31T10:38:55-07:00
New Revision: bc3b1b06c6e59a0de5b4b3607816a9255ca01df9

URL: https://github.com/llvm/llvm-project/commit/bc3b1b06c6e59a0de5b4b3607816a9255ca01df9
DIFF: https://github.com/llvm/llvm-project/commit/bc3b1b06c6e59a0de5b4b3607816a9255ca01df9.diff

LOG: [mlir][memref] Fix build after #132545 (#133760)

There was a typo in the error message.

Added: 
    

Modified: 
    mlir/lib/Dialect/MemRef/Transforms/RuntimeOpVerification.cpp

Removed: 
    


################################################################################
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