From 22cf7e0a4d05d613a26795af4c95ca38eecf63c6 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Tue, 1 May 2012 16:44:36 +0200 Subject: [PATCH] Fix missing 'int op;' in load_from_end, accidently removed it together with the other vars whil making it use general_instruction --- ir.c | 1 + 1 file changed, 1 insertion(+) 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; -- 2.39.2