#ifndef _LANG_CODEGEN_H_ #define _LANG_CODEGEN_H_ #include 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