We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 441b82b commit b4d2c5dCopy full SHA for b4d2c5d
mlir/include/mlir/Dialect/EmitC/IR/EmitC.td
@@ -1110,9 +1110,9 @@ def EmitC_GlobalOp : EmitC_Op<"global", [Symbol]> {
1110
1111
```mlir
1112
// Global variable with an initial value.
1113
- emitc.global @x : emitc.array<2xf32> = dense<0.0, 2.0>
+ emitc.global @x : !emitc.array<2xf32> = dense<0.0, 2.0>
1114
// External global variable
1115
- emitc.global extern @x : emitc.array<2xf32>
+ emitc.global extern @x : !emitc.array<2xf32>
1116
// Constant global variable with internal linkage
1117
emitc.global static const @x : i32 = 0
1118
```
0 commit comments