mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-04-18 23:21:50 +00:00
target/arm: Make VQDMULL undefined when U=1
According to Arm ARM, VQDMULL is only valid when U=0, while having U=1 is unallocated. Backports commit ab553ef74ee52c0889679d0bd0da084aaf938f5c from qemu
This commit is contained in:
parent
12cad29510
commit
65200d8aad
|
@ -6148,7 +6148,7 @@ static int disas_neon_data_insn(DisasContext *s, uint32_t insn)
|
|||
{0, 0, 0, 0}, /* VMLSL */
|
||||
{0, 0, 0, 9}, /* VQDMLSL */
|
||||
{0, 0, 0, 0}, /* Integer VMULL */
|
||||
{0, 0, 0, 1}, /* VQDMULL */
|
||||
{0, 0, 0, 9}, /* VQDMULL */
|
||||
{0, 0, 0, 0xa}, /* Polynomial VMULL */
|
||||
{0, 0, 0, 7}, /* Reserved: always UNDEF */
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue