mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
target-mips: pass 0 instead of -1 as rs in microMIPS LUI instruction
Using rs = -1 in gen_logic_imm() for microMIPS LUI instruction is dangerous and may bite us when implementing microMIPS R6 because in R6 AUI and LUI are distinguished by rs value. Therefore use 0 for safety. Reported-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
This commit is contained in:
@@ -13653,7 +13653,7 @@ static void decode_micromips32_opc (CPUMIPSState *env, DisasContext *ctx,
|
||||
target. */
|
||||
break;
|
||||
case LUI:
|
||||
gen_logic_imm(ctx, OPC_LUI, rs, -1, imm);
|
||||
gen_logic_imm(ctx, OPC_LUI, rs, 0, imm);
|
||||
break;
|
||||
case SYNCI:
|
||||
/* Break the TB to be able to sync copied instructions
|
||||
|
||||
Reference in New Issue
Block a user