about summary refs log tree commit diff
path: root/library/stdarch/crates/stdarch-verify/tests
diff options
context:
space:
mode:
authorminybot <jironglin@gmail.com>2021-01-03 19:35:51 -0500
committerGitHub <noreply@github.com>2021-01-04 00:35:51 +0000
commit981e250f89e425ee468d35493f86a74fca6fa505 (patch)
tree2d60c04a9d397a427f5d6592f860242ea7a8fb19 /library/stdarch/crates/stdarch-verify/tests
parent5f6e8a261f66de820ea624c70a82b13a42c9343c (diff)
downloadrust-981e250f89e425ee468d35493f86a74fca6fa505.tar.gz
rust-981e250f89e425ee468d35493f86a74fca6fa505.zip
Avx512vbmi (#977)
Diffstat (limited to 'library/stdarch/crates/stdarch-verify/tests')
-rw-r--r--library/stdarch/crates/stdarch-verify/tests/x86-intel.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/library/stdarch/crates/stdarch-verify/tests/x86-intel.rs b/library/stdarch/crates/stdarch-verify/tests/x86-intel.rs
index ddc48fc83bf..601549d5dc0 100644
--- a/library/stdarch/crates/stdarch-verify/tests/x86-intel.rs
+++ b/library/stdarch/crates/stdarch-verify/tests/x86-intel.rs
@@ -476,6 +476,9 @@ fn matches(rust: &Function, intel: &Intrinsic) -> Result<(), String> {
             // The XML file names BITALG as "avx512_bitalg", while Rust calls
             // it "avx512bitalg".
             "avx512_bitalg" => String::from("avx512bitalg"),
+            // The XML file names VBMI as "avx512_vbmi", while Rust calls
+            // it "avx512vbmi".
+            "avx512_vbmi" => String::from("avx512vbmi"),
             // Some AVX512f intrinsics are also supported by Knight's Corner.
             // The XML lists them as avx512f/kncni, but we are solely gating
             // them behind avx512f since we don't have a KNC feature yet.