[Mlir-commits] [mlir] 9899567 - [MLIR] Fix LLVM doc link in MemRefOps.td (#155254)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Mon Aug 25 08:55:53 PDT 2025
Author: Shenghang Tsai
Date: 2025-08-25T17:55:50+02:00
New Revision: 9899567c476e3ca16a73d3a62a19fa5a0f47370b
URL: https://github.com/llvm/llvm-project/commit/9899567c476e3ca16a73d3a62a19fa5a0f47370b
DIFF: https://github.com/llvm/llvm-project/commit/9899567c476e3ca16a73d3a62a19fa5a0f47370b.diff
LOG: [MLIR] Fix LLVM doc link in MemRefOps.td (#155254)
Added:
Modified:
mlir/include/mlir/Dialect/MemRef/IR/MemRefOps.td
Removed:
################################################################################
diff --git a/mlir/include/mlir/Dialect/MemRef/IR/MemRefOps.td b/mlir/include/mlir/Dialect/MemRef/IR/MemRefOps.td
index 9321089ab55fa..d6b7a97179b71 100644
--- a/mlir/include/mlir/Dialect/MemRef/IR/MemRefOps.td
+++ b/mlir/include/mlir/Dialect/MemRef/IR/MemRefOps.td
@@ -1214,7 +1214,7 @@ def LoadOp : MemRef_Op<"load",
A set `nontemporal` attribute indicates that this load is not expected to
be reused in the cache. For details, refer to the
- [https://llvm.org/docs/LangRef.html#load-instruction](LLVM load instruction).
+ [LLVM load instruction](https://llvm.org/docs/LangRef.html#load-instruction).
An optional `alignment` attribute allows to specify the byte alignment of the
load operation. It must be a positive power of 2. The operation must access
@@ -1947,7 +1947,7 @@ def MemRef_StoreOp : MemRef_Op<"store",
A set `nontemporal` attribute indicates that this store is not expected to
be reused in the cache. For details, refer to the
- [https://llvm.org/docs/LangRef.html#store-instruction](LLVM store instruction).
+ [LLVM store instruction](https://llvm.org/docs/LangRef.html#store-instruction).
An optional `alignment` attribute allows to specify the byte alignment of the
store operation. It must be a positive power of 2. The operation must access
More information about the Mlir-commits
mailing list