xref: /llvm-project/mlir/test/mlir-pdll/CodeGen/MLIR/include/ops.td (revision 81f2f4dfb2922e4f7af8bbfd8b653eda7c1f1339)
1include "mlir/IR/OpBase.td"
2
3def Test_Dialect : Dialect {
4  let name = "test";
5}
6
7def OpWithResults : Op<Test_Dialect, "with_results"> {
8  let results = (outs I64:$result, Variadic<I64>:$var_result);
9}
10