mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 20:33:05 +00:00
Fix missing 'int op;' in load_from_end, accidently removed it together with the other vars whil making it use general_instruction
This commit is contained in:
parent
8ab51544be
commit
22cf7e0a4d
1 changed files with 1 additions and 0 deletions
1
ir.c
1
ir.c
|
@ -1032,6 +1032,7 @@ ir_value* ir_block_create_fieldaddress(ir_block *self, const char *label, ir_val
|
||||||
|
|
||||||
ir_value* ir_block_create_load_from_ent(ir_block *self, const char *label, ir_value *ent, ir_value *field, int outype)
|
ir_value* ir_block_create_load_from_ent(ir_block *self, const char *label, ir_value *ent, ir_value *field, int outype)
|
||||||
{
|
{
|
||||||
|
int op;
|
||||||
if (ent->vtype != TYPE_ENTITY)
|
if (ent->vtype != TYPE_ENTITY)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue