]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Remove 2 unused variables in create_binop - unused since create_general_instruction
authorWolfgang Bumiller <wolfgang.linux@bumiller.com>
Tue, 1 May 2012 14:45:15 +0000 (16:45 +0200)
committerWolfgang Bumiller <wolfgang.linux@bumiller.com>
Tue, 1 May 2012 14:45:15 +0000 (16:45 +0200)
ir.c

diff --git a/ir.c b/ir.c
index d44ccc884c677868250c8b093463d21218bc4897..a390ad795bde42d965d8dd693b79bc366a98e8fc 100644 (file)
--- a/ir.c
+++ b/ir.c
@@ -894,9 +894,6 @@ ir_value* ir_block_create_binop(ir_block *self,
                                 const char *label, int opcode,
                                 ir_value *left, ir_value *right)
 {
-    ir_value *out = NULL;
-    ir_instr *in  = NULL;
-
     int ot = TYPE_VOID;
     switch (opcode) {
         case INSTR_ADD_F: