struct ir_function_s;
typedef struct ir_value_s {
- const char *_name;
+ const char *name;
ir_type_t vtype;
ir_store_t store;
filecontext_t context;
/* block */
typedef struct ir_block_s
{
- const char *_label;
+ const char *label;
filecontext_t context;
qbool final; /* once a jump is added we're done */
typedef struct ir_function_s
{
- const char *_name;
+ const char *name;
ir_type_t retype;
MEM_VECTOR_MAKE(ir_type_t, params);
MEM_VECTOR_MAKE(ir_block*, blocks);
/* builder */
typedef struct ir_builder_s
{
- const char *_name;
+ const char *name;
MEM_VECTOR_MAKE(ir_function*, functions);
MEM_VECTOR_MAKE(ir_value*, globals);
} ir_builder;