19 lines
410 B
C
19 lines
410 B
C
#ifndef __SPL_AST2IR_H__
|
|
#define __SPL_AST2IR_H__
|
|
|
|
#include "spl_ir.h"
|
|
#include "spl_sema.h"
|
|
|
|
typedef struct {
|
|
const spl_sema_t *sema;
|
|
spl_ir_builder_t *ir;
|
|
int err_count;
|
|
} spl_ast2ir_t;
|
|
|
|
void spl_ast2ir_init(spl_ast2ir_t *ast2ir, spl_ir_builder_t *ir, const spl_sema_t *sema);
|
|
void spl_ast2ir_drop(spl_ast2ir_t *ast2ir);
|
|
|
|
void spl_ast2ir_run(spl_ast2ir_t *ast2ir);
|
|
|
|
#endif /* __SPL_AST2IR_H__ */
|