From: Wolfgang Bumiller Date: Tue, 1 May 2012 14:44:36 +0000 (+0200) Subject: Fix missing 'int op;' in load_from_end, accidently removed it together with the other... X-Git-Tag: 0.1-rc1~526 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=22cf7e0a4d05d613a26795af4c95ca38eecf63c6;p=xonotic%2Fgmqcc.git Fix missing 'int op;' in load_from_end, accidently removed it together with the other vars whil making it use general_instruction --- diff --git a/ir.c b/ir.c index cfcbb85..d44ccc8 100644 --- a/ir.c +++ b/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) { + int op; if (ent->vtype != TYPE_ENTITY) return NULL;