22 lines
545 B
C
22 lines
545 B
C
#include <mie/ctx.h>
|
|
#include <mie/dialect/dialect.h>
|
|
#include <mie/ir/op-definition.h>
|
|
#include <mie/macros.h>
|
|
#include <mie/trait/trait.h>
|
|
|
|
static enum mie_status print(struct mie_printer *printer, const struct mie_op *op)
|
|
{
|
|
return MIE_SUCCESS;
|
|
}
|
|
|
|
static enum mie_status parse(struct mie_parser *parser, struct mie_op *out)
|
|
{
|
|
return MIE_SUCCESS;
|
|
}
|
|
|
|
MIE_OP_DEFINITION_BEGIN(mie_select_graph, "graph")
|
|
MIE_OP_DEFINITION_PRINT(print);
|
|
MIE_OP_DEFINITION_PARSE(parse);
|
|
MIE_OP_DEFINITION_TRAIT("select", "graph-scope");
|
|
MIE_OP_DEFINITION_END()
|