diff options
Diffstat (limited to 'target-mips/translate.c')
-rw-r--r-- | target-mips/translate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-mips/translate.c b/target-mips/translate.c index 3035ea26f0..96a0f37d27 100644 --- a/target-mips/translate.c +++ b/target-mips/translate.c @@ -907,7 +907,7 @@ static void gen_arith_imm (DisasContext *ctx, uint32_t opc, int rt, GEN_LOAD_IMM_TN(T1, uimm); break; case OPC_LUI: - uimm <<= 16; + uimm = (int32_t)(imm << 16); GEN_LOAD_IMM_TN(T0, uimm); break; case OPC_SLL: |