mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
tcg: Remove tcg_gen_trunc_i64_i32
Replacing it with tcg_gen_extrl_i64_i32. Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
609ad70562
commit
ecc7b3aa71
14 changed files with 112 additions and 117 deletions
|
@ -2680,7 +2680,7 @@ DISAS_INSN(from_mac)
|
|||
if (s->env->macsr & MACSR_FI) {
|
||||
gen_helper_get_macf(rx, cpu_env, acc);
|
||||
} else if ((s->env->macsr & MACSR_OMC) == 0) {
|
||||
tcg_gen_trunc_i64_i32(rx, acc);
|
||||
tcg_gen_extrl_i64_i32(rx, acc);
|
||||
} else if (s->env->macsr & MACSR_SU) {
|
||||
gen_helper_get_macs(rx, acc);
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue