mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-21 10:51:10 +00:00
Remove some underscores
This commit is contained in:
parent
ce3eac4612
commit
42d9ff3563
1 changed files with 4 additions and 4 deletions
8
ir.h
8
ir.h
|
@ -14,7 +14,7 @@ typedef struct
|
|||
|
||||
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;
|
||||
|
@ -98,7 +98,7 @@ void ir_instr_dump(ir_instr* in, char *ind, int (*oprintf)(const char*,...));
|
|||
/* 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 */
|
||||
|
||||
|
@ -158,7 +158,7 @@ void ir_block_dump(ir_block*, char *ind, int (*oprintf)(const char*,...));
|
|||
|
||||
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);
|
||||
|
@ -209,7 +209,7 @@ void ir_function_dump(ir_function*, char *ind, int (*oprintf)(const char*,...));
|
|||
/* 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;
|
||||
|
|
Loading…
Reference in a new issue