mirror of https://gitee.com/openkylin/qemu.git
Fix argument order.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4651 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
619dfca13a
commit
a569557f52
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue