19 lines
430 B
C
19 lines
430 B
C
#include <mie/ctx.h>
|
|
#include <mie/ir/op-definition.h>
|
|
#include <mie/macros.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_memref_load, "load")
|
|
MIE_OP_DEFINITION_PRINT(print);
|
|
MIE_OP_DEFINITION_PARSE(parse);
|
|
MIE_OP_DEFINITION_END()
|