bolt/deps/llvm-18.1.8/mlir/test/mlir-pdll/CodeGen/MLIR/include/ops.td
2025-02-14 19:21:04 +01:00

9 lines
202 B
TableGen

include "mlir/IR/OpBase.td"
def Test_Dialect : Dialect {
let name = "test";
}
def OpWithResults : Op<Test_Dialect, "with_results"> {
let results = (outs I64:$result, Variadic<I64>:$var_result);
}