#ifndef __IR_AST_H__ #define __IR_AST_H__ #include "ir.h" typedef struct ast_node ast_node_t; ir_prog_t* gen_ir_from_ast(ast_node_t* node); #endif //