diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2023-05-10 18:36:39 +0200 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2023-10-04 17:56:26 +0300 |
commit | 91fa1379791e44d4df706a6bf76c152c987cb477 (patch) | |
tree | 53cfa487b079397dbf414f57af00fb475182b477 | |
parent | c9a2d122bfc274ea4ca4a460b7a0d0ee7499190d (diff) |
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>
(cherry picked from commit 9e65829699f901c62a612316a2897f4ad8a27049)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
-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 d9ca00a49e..641a2ef69e 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, |