target/mips: Fix two instances of shadow variables

Fix two instances of shadow variables. This cleans up entire file
translate.c from shadow variables.

Backports commit e1555d7ddf2c86fb92165e47eb092f1f5fa9e8bd from qemu
This commit is contained in:
Aleksandar Markovic 2018-08-17 14:18:36 -04:00 committed by Lioncash
parent 0fd3ae0efb
commit af31bc3982
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7

View File

@ -13395,7 +13395,7 @@ static void gen_pool16c_r6_insn(DisasContext *ctx)
gen_arith_imm(ctx, OPC_ADDIU, 29, 29, imm << 2); gen_arith_imm(ctx, OPC_ADDIU, 29, 29, imm << 2);
} else { } else {
/* JRC16 */ /* JRC16 */
int rs = extract32(ctx->opcode, 5, 5); rs = extract32(ctx->opcode, 5, 5);
gen_compute_branch(ctx, OPC_JR, 2, rs, 0, 0, 0); gen_compute_branch(ctx, OPC_JR, 2, rs, 0, 0, 0);
} }
break; break;
@ -15418,7 +15418,7 @@ static void decode_micromips32_opc(CPUMIPSState *env, DisasContext *ctx)
} else { } else {
/* ADDIUPC */ /* ADDIUPC */
int reg = mmreg(ZIMM(ctx->opcode, 23, 3)); int reg = mmreg(ZIMM(ctx->opcode, 23, 3));
int offset = SIMM(ctx->opcode, 0, 23) << 2; offset = SIMM(ctx->opcode, 0, 23) << 2;
gen_addiupc(ctx, reg, offset, 0, 0); gen_addiupc(ctx, reg, offset, 0, 0);
} }