Message ID | 917b6766-ad0a-ba05-74bc-2f0ec7ba6157@suse.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | x86emul: full coverage mem access / write testing | expand |
--- a/tools/tests/x86_emulator/evex-disp8.c +++ b/tools/tests/x86_emulator/evex-disp8.c @@ -551,9 +551,9 @@ static const struct test avx512_4vnniw_5 }; static const struct test avx512_bf16_all[] = { - INSN(vcvtne2ps2bf16, f2, 0f38, 72, vl, d, vl), - INSN(vcvtneps2bf16, f3, 0f38, 72, vl, d, vl), - INSN(vdpbf16ps, f3, 0f38, 52, vl, d, vl), + INSN(cvtne2ps2bf16, f2, 0f38, 72, vl, d, vl), + INSN(cvtneps2bf16, f3, 0f38, 72, vl, d, vl), + INSN(dpbf16ps, f3, 0f38, 52, vl, d, vl), }; static const struct test avx512_bitalg_all[] = {
The leading 'v' ought to be omitted from the table entries. Fixes: 7ff66809ccd5 ("x86emul: support AVX512_BF16 insns") Signed-off-by: Jan Beulich <jbeulich@suse.com>