2025-04-01 00:13:21 +08:00

9 lines
152 B
C

#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 //