Remove 2 unused variables in create_binop - unused since create_general_instruction

This commit is contained in:
Wolfgang Bumiller 2012-05-01 16:45:15 +02:00
parent 22cf7e0a4d
commit bb7c59c648

3
ir.c
View file

@ -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: