diff options
Diffstat (limited to 'mlir/examples/toy/Ch4/include/toy/Ops.td')
| -rw-r--r-- | mlir/examples/toy/Ch4/include/toy/Ops.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/examples/toy/Ch4/include/toy/Ops.td b/mlir/examples/toy/Ch4/include/toy/Ops.td index 27fdc345c25..bbbcc484bae 100644 --- a/mlir/examples/toy/Ch4/include/toy/Ops.td +++ b/mlir/examples/toy/Ch4/include/toy/Ops.td @@ -148,7 +148,7 @@ def GenericCallOp : Toy_Op<"generic_call", // The generic call operation takes a symbol reference attribute as the // callee, and inputs for the call. - let arguments = (ins SymbolRefAttr:$callee, Variadic<F64Tensor>:$inputs); + let arguments = (ins FlatSymbolRefAttr:$callee, Variadic<F64Tensor>:$inputs); // The generic call operation returns a single value of TensorType. let results = (outs F64Tensor); |

