From 7bc45061eee222bd198db8485e2e9364190ff8f1 Mon Sep 17 00:00:00 2001 From: ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> Date: Wed, 25 Apr 2007 13:58:52 +0000 Subject: [PATCH] Fix lui sign extension. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2726 c046a42c-6fe2-441c-8c8c-71466251a162 --- target-mips/translate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.30.2