luaur-code-gen 0.1.3

Native (A64/X64) code generation for Luau (Rust).
Documentation
use crate::enums::ir_cmd::IrCmd;
use crate::records::ir_builder::IrBuilder;
use crate::records::ir_op::IrOp;

impl IrBuilder {
    pub fn inst_ir_cmd_ir_op_ir_op_ir_op_ir_op_ir_op_ir_op_ir_op(
        &mut self,
        cmd: IrCmd,
        a: IrOp,
        b: IrOp,
        c: IrOp,
        d: IrOp,
        e: IrOp,
        f: IrOp,
        g: IrOp,
    ) -> IrOp {
        let ops = [a, b, c, d, e, f, g];
        self.inst_ir_cmd_initializer_list_ir_op(cmd, &ops)
    }
}