Skip to content

Commit 9899567

Browse files
authored
[MLIR] Fix LLVM doc link in MemRefOps.td (#155254)
1 parent 02540b2 commit 9899567

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/include/mlir/Dialect/MemRef/IR/MemRefOps.td

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1214,7 +1214,7 @@ def LoadOp : MemRef_Op<"load",
12141214

12151215
A set `nontemporal` attribute indicates that this load is not expected to
12161216
be reused in the cache. For details, refer to the
1217-
[https://llvm.org/docs/LangRef.html#load-instruction](LLVM load instruction).
1217+
[LLVM load instruction](https://llvm.org/docs/LangRef.html#load-instruction).
12181218

12191219
An optional `alignment` attribute allows to specify the byte alignment of the
12201220
load operation. It must be a positive power of 2. The operation must access
@@ -1947,7 +1947,7 @@ def MemRef_StoreOp : MemRef_Op<"store",
19471947

19481948
A set `nontemporal` attribute indicates that this store is not expected to
19491949
be reused in the cache. For details, refer to the
1950-
[https://llvm.org/docs/LangRef.html#store-instruction](LLVM store instruction).
1950+
[LLVM store instruction](https://llvm.org/docs/LangRef.html#store-instruction).
19511951

19521952
An optional `alignment` attribute allows to specify the byte alignment of the
19531953
store operation. It must be a positive power of 2. The operation must access

0 commit comments

Comments
 (0)