mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-25 02:52:06 -06:00
target-i386: Remove gen_op_movl_T0_T1
Replace it with its definition. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
f0706f0c93
commit
2b98a7d753
1 changed files with 1 additions and 6 deletions
|
@ -252,11 +252,6 @@ static void gen_update_cc_op(DisasContext *s)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void gen_op_movl_T0_T1(void)
|
|
||||||
{
|
|
||||||
tcg_gen_mov_tl(cpu_T[0], cpu_T[1]);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void gen_op_andl_A0_ffff(void)
|
static inline void gen_op_andl_A0_ffff(void)
|
||||||
{
|
{
|
||||||
tcg_gen_andi_tl(cpu_A0, cpu_A0, 0xffff);
|
tcg_gen_andi_tl(cpu_A0, cpu_A0, 0xffff);
|
||||||
|
@ -5046,7 +5041,7 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||||
tcg_const_i32(s->pc - pc_start));
|
tcg_const_i32(s->pc - pc_start));
|
||||||
} else {
|
} else {
|
||||||
gen_op_movl_seg_T0_vm(R_CS);
|
gen_op_movl_seg_T0_vm(R_CS);
|
||||||
gen_op_movl_T0_T1();
|
tcg_gen_mov_tl(cpu_T[0], cpu_T[1]);
|
||||||
gen_op_jmp_T0();
|
gen_op_jmp_T0();
|
||||||
}
|
}
|
||||||
gen_eob(s);
|
gen_eob(s);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue