mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 19:55:29 +00:00
target/arm: Flush high bits of sve register after AdvSIMD EXT
Writes to AdvSIMD registers flush the bits above 128. Backports commit 78cedfabd53b6f64e7e64fc84878d848e5df1d08 from qemu
This commit is contained in:
parent
96a96565db
commit
18e9c4805f
|
@ -7148,6 +7148,7 @@ static void disas_simd_ext(DisasContext *s, uint32_t insn)
|
|||
tcg_temp_free_i64(tcg_ctx, tcg_resl);
|
||||
write_vec_element(s, tcg_resh, rd, 1, MO_64);
|
||||
tcg_temp_free_i64(tcg_ctx, tcg_resh);
|
||||
clear_vec_high(s, true, rd);
|
||||
}
|
||||
|
||||
/* TBL/TBX
|
||||
|
|
Loading…
Reference in a new issue