From: Jan Beulich Date: Mon, 2 Dec 2024 08:51:28 +0000 (+0100) Subject: x86emul: correct VPBROADCASTMW2D predicate testing X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=3df8812f90d78b65bee1754bb0b3bfc93d9ec3e3;p=people%2Fandrewcoop%2Fxen.git x86emul: correct VPBROADCASTMW2D predicate testing Due to presumably a copy-and-paste mistake VPBROADCASTMB2Q was tested twice instead. Signed-off-by: Jan Beulich Acked-by: Andrew Cooper --- diff --git a/tools/tests/x86_emulator/predicates.c b/tools/tests/x86_emulator/predicates.c index 270a18e546..afe2e297d9 100644 --- a/tools/tests/x86_emulator/predicates.c +++ b/tools/tests/x86_emulator/predicates.c @@ -1889,7 +1889,7 @@ static const struct evex { { { 0x39 }, 2, T, R, pfx_66, Wn, Ln }, /* vpmins{d,q} */ { { 0x39, 0xc0 }, 2, F, N, pfx_f3, Wn, Ln }, /* vpmov{d,q}2m */ { { 0x3a }, 2, T, R, pfx_66, WIG, Ln }, /* vpminuw */ - { { 0x2a, 0xc0 }, 2, F, N, pfx_f3, W0, Ln }, /* vpbroadcastmw2d */ + { { 0x3a, 0xc0 }, 2, F, N, pfx_f3, W0, Ln }, /* vpbroadcastmw2d */ { { 0x3b }, 2, T, R, pfx_66, Wn, Ln }, /* vpminu{d,q} */ { { 0x3c }, 2, T, R, pfx_66, WIG, Ln }, /* vpmaxsb */ { { 0x3d }, 2, T, R, pfx_66, Wn, Ln }, /* vpmaxs{d,q} */