Skip to content

Commit a82ca39

Browse files
authored
[mlir][EmitC] Fix type in example (#85205)
1 parent 4528c44 commit a82ca39

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
@@ -39,7 +39,7 @@ def EmitC_ArrayType : EmitC_Type<"Array", "array", [ShapedTypeInterface]> {
3939
// Array emitted as `int32_t[10]`
4040
!emitc.array<10xi32>
4141
// Array emitted as `float[10][20]`
42-
!emitc.ptr<10x20xf32>
42+
!emitc.array<10x20xf32>
4343
```
4444
}];
4545

0 commit comments

Comments
 (0)