| Issue |
114202
|
| Summary |
Documentation typo in Bufferization/Transforms/Passes.td
|
| Labels |
new issue
|
| Assignees |
|
| Reporter |
PerMildner
|
https://github.com/llvm/llvm-project/blob/652988b65805b23f228db34adfff068cffd517cc/mlir/include/mlir/Dialect/Bufferization/Transforms/Passes.td#L587
It says:
```
%0 = tensor.empty() : tensor<10xf32>
%1 = linalg.fill ... outs(%0 : tensor<10xf32>)
%2 = tensor.insert_slice %0 into %t ...
```
but surely the last line should be
```
%2 = tensor.insert_slice %1 into %t ...
```
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs