9 lines
232 B
C
9 lines
232 B
C
#ifndef __IR_LIB_H__
|
|
#define __IR_LIB_H__
|
|
|
|
#include "ir.h"
|
|
ir_node_t* new_ir_node(const char* name, ir_node_tag_t tag);
|
|
ir_bblock_t* new_ir_bblock(const char* name);
|
|
ir_func_t* new_ir_func(const char* name, ir_type_t* type);
|
|
|
|
#endif |