aboutsummaryrefslogtreecommitdiff
path: root/target-mips
diff options
context:
space:
mode:
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2008-06-02 08:24:41 +0000
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2008-06-02 08:24:41 +0000
commita569557f52c60afbe7360d5a1cbd6be309dd93ae (patch)
tree7230534cebfb3d0abe7e489e07843e3199a11849 /target-mips
parent619dfca13a76da9bd10766858ed3ba40d4b303b2 (diff)
Fix argument order.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4651 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips')
-rw-r--r--target-mips/translate.c4
1 files 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);