diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2023-05-10 18:36:39 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-05-18 08:53:50 +0200 |
commit | 9e65829699f901c62a612316a2897f4ad8a27049 (patch) | |
tree | e0f8b1b57a8c758d6f66e22879d2efece674dbda /tests/tcg/i386 | |
parent | 056d649007bc9fdae9f1d576e77c1316e9a34468 (diff) | |
download | qemu-9e65829699f901c62a612316a2897f4ad8a27049.zip qemu-9e65829699f901c62a612316a2897f4ad8a27049.tar.gz qemu-9e65829699f901c62a612316a2897f4ad8a27049.tar.bz2 |
tests/tcg/i386: correct mask for VPERM2F128/VPERM2I128
The instructions also use bits 3 and 7 of their 8-byte immediate.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests/tcg/i386')
-rwxr-xr-x | tests/tcg/i386/test-avx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tcg/i386/test-avx.py b/tests/tcg/i386/test-avx.py index d9ca00a..641a2ef 100755 --- a/tests/tcg/i386/test-avx.py +++ b/tests/tcg/i386/test-avx.py @@ -49,7 +49,7 @@ imask = { 'VEXTRACT[FI]128': 0x01, 'VINSERT[FI]128': 0x01, 'VPBLENDD': 0xff, - 'VPERM2[FI]128': 0x33, + 'VPERM2[FI]128': 0xbb, 'VPERMPD': 0xff, 'VPERMQ': 0xff, 'VPERMILPS': 0xff, |