[Mlir-commits] [mlir] [MLIR] Fix LLVM doc link in MemRefOps.td (PR #155254)

Shenghang Tsai llvmlistbot at llvm.org
Mon Aug 25 08:01:50 PDT 2025


https://github.com/jackalcooper updated https://github.com/llvm/llvm-project/pull/155254

>From d7026f69ebc95ebcc1636fe1a69f5e5000683b05 Mon Sep 17 00:00:00 2001
From: Shenghang Tsai <jackalcooper at gmail.com>
Date: Mon, 25 Aug 2025 22:52:02 +0800
Subject: [PATCH] Fix LLVM doc link in MemRefOps.td

---
 mlir/include/mlir/Dialect/MemRef/IR/MemRefOps.td | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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