Skip to content

Commit 4e66654

Browse files
marbremgehre-amd
authored andcommitted
[mlir][EmitC] Fix type in example (llvm#85205)
1 parent 2b7b3ff commit 4e66654

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/include/mlir/Dialect/EmitC/IR/EmitCTypes.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def EmitC_ArrayType : EmitC_Type<"Array", "array", [ShapedTypeInterface]> {
4545
// Array emitted as `int32_t[10]`
4646
!emitc.array<10xi32>
4747
// Array emitted as `float[10][20]`
48-
!emitc.ptr<10x20xf32>
48+
!emitc.array<10x20xf32>
4949
```
5050
}];
5151

0 commit comments

Comments
 (0)