Files
ivy/mie/include/mie/ir/op.h

14 lines
215 B
C

#ifndef MIE_ARITH_H_
#define MIE_ARITH_H_
#include <mie/ir/instr.h>
struct mie_binary_op {
struct mie_instr op_base;
struct mie_type *op_type;
struct mie_value *op_left;
struct mie_value *op_right;
};
#endif