Files
ivy/lang/codegen/codegen.h

19 lines
306 B
C

#ifndef _LANG_CODEGEN_H_
#define _LANG_CODEGEN_H_
#include <blue/core/queue.h>
struct mie_builder;
struct mie_ctx;
struct mie_func;
struct ivy_codegen {
b_queue c_ir_values;
struct mie_builder *c_builder;
struct mie_ctx *c_ctx;
struct mie_module *c_module;
struct mie_func *c_immediate;
};
#endif