]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Fix missing 'int op;' in load_from_end, accidently removed it together with the other...
authorWolfgang Bumiller <wolfgang.linux@bumiller.com>
Tue, 1 May 2012 14:44:36 +0000 (16:44 +0200)
committerWolfgang Bumiller <wolfgang.linux@bumiller.com>
Tue, 1 May 2012 14:44:36 +0000 (16:44 +0200)
ir.c

diff --git a/ir.c b/ir.c
index cfcbb85d796ad2128f0723bf47629200d4d62903..d44ccc884c677868250c8b093463d21218bc4897 100644 (file)
--- 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;