From a569557f52c60afbe7360d5a1cbd6be309dd93ae Mon Sep 17 00:00:00 2001 From: ths Date: Mon, 2 Jun 2008 08:24:41 +0000 Subject: [PATCH] Fix argument order. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4651 c046a42c-6fe2-441c-8c8c-71466251a162 --- target-mips/translate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target-mips/translate.c b/target-mips/translate.c index e3481e49d5..79af6ca4de 100644 --- a/target-mips/translate.c +++ b/target-mips/translate.c @@ -1422,7 +1422,7 @@ static void gen_arith_imm (CPUState *env, DisasContext *ctx, uint32_t opc, tcg_gen_shl_i32(r_tmp2, r_tmp1, r_tmp2); tcg_gen_shri_i32(r_tmp1, r_tmp1, uimm); tcg_gen_or_i32(r_tmp1, r_tmp1, r_tmp2); - tcg_gen_ext_i32_tl(r_tmp1, cpu_T[0]); + tcg_gen_ext_i32_tl(cpu_T[0], r_tmp1); dead_tmp(r_tmp1); dead_tmp(r_tmp2); } @@ -1762,7 +1762,7 @@ static void gen_arith (CPUState *env, DisasContext *ctx, uint32_t opc, tcg_gen_shl_i32(r_tmp3, r_tmp2, r_tmp3); tcg_gen_shr_i32(r_tmp1, r_tmp2, r_tmp1); tcg_gen_or_i32(r_tmp1, r_tmp1, r_tmp3); - tcg_gen_ext_i32_tl(r_tmp1, cpu_T[0]); + tcg_gen_ext_i32_tl(cpu_T[0], r_tmp1); dead_tmp(r_tmp1); dead_tmp(r_tmp2); dead_tmp(r_tmp3); -- 2.11.0