File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
mlir/include/mlir/Dialect/MemRef/IR Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ def MemRef_ReallocOp : MemRef_Op<"realloc"> {
233
233
aligned_realloc.
234
234
235
235
```mlir
236
- %3 = memref.ralloc %src {alignment = 8} : memref<64xf32> to memref<124xf32>
236
+ %3 = memref.realloc %src {alignment = 8} : memref<64xf32> to memref<124xf32>
237
237
```
238
238
239
239
Referencing the memref through the old SSA value after realloc is undefined
@@ -1155,7 +1155,7 @@ def LoadOp : MemRef_Op<"load",
1155
1155
1156
1156
let arguments = (ins Arg<AnyMemRef, "the reference to load from",
1157
1157
[MemRead]>:$memref,
1158
- Variadic<Index>:$indices,
1158
+ Variadic<Index>:$indices,
1159
1159
DefaultValuedOptionalAttr<BoolAttr, "false">:$nontemporal);
1160
1160
let results = (outs AnyType:$result);
1161
1161
@@ -1691,7 +1691,7 @@ def MemRef_StoreOp : MemRef_Op<"store",
1691
1691
let arguments = (ins AnyType:$value,
1692
1692
Arg<AnyMemRef, "the reference to store to",
1693
1693
[MemWrite]>:$memref,
1694
- Variadic<Index>:$indices,
1694
+ Variadic<Index>:$indices,
1695
1695
DefaultValuedOptionalAttr<BoolAttr, "false">:$nontemporal);
1696
1696
1697
1697
let builders = [
You can’t perform that action at this time.
0 commit comments