smcc/ccompiler/middleend/middleend.c
2025-04-01 00:13:21 +08:00

6 lines
128 B
C

#include "middleend.h"
ir_prog_t* cc_middleend(ast_node_t* root, cc_midend_conf_t* conf) {
return gen_ir_from_ast(root);
}