Skip to content

Commit 4c6b9bc

Browse files
committed
features in alphabetic order
1 parent 98d8fc1 commit 4c6b9bc

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

src/librustc_trans/llvm_util.rs

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -83,18 +83,17 @@ const ARM_WHITELIST: &'static [&'static str] = &["neon", "v7", "vfp2", "vfp3", "
8383

8484
const AARCH64_WHITELIST: &'static [&'static str] = &["neon", "v7"];
8585

86-
const X86_WHITELIST: &'static [&'static str] = &["avx", "avx2", "bmi", "bmi2", "sse",
87-
"sse2", "sse3", "sse4.1", "sse4.2",
88-
"ssse3", "tbm", "lzcnt", "popcnt",
89-
"sse4a","fma", "rdrand", "rdseed",
90-
"xsave", "xsaveopt", "xsavec",
91-
"xsaves", "aes", "pclmulqdq",
92-
"avx512bw", "avx512cd",
93-
"avx512dq", "avx512er",
94-
"avx512f", "avx512ifma",
95-
"avx512pf", "avx512vbmi",
96-
"avx512vl", "avx512vpopcntdq",
97-
"mmx", "fxsr"];
86+
const X86_WHITELIST: &'static [&'static str] = &["aes", "avx", "avx2", "avx512bw",
87+
"avx512cd", "avx512dq", "avx512er",
88+
"avx512f", "avx512ifma", "avx512pf",
89+
"avx512vbmi", "avx512vl", "avx512vpopcntdq",
90+
"bmi", "bmi2", "fma", "fxsr",
91+
"lzcnt", "mmx", "pclmulqdq",
92+
"popcnt", "rdrand", "rdseed",
93+
"sse", "sse2", "sse3", "sse4.1",
94+
"sse4.2", "sse4a", "ssse3",
95+
"tbm", "xsave", "xsavec",
96+
"xsaveopt", "xsaves"];
9897

9998
const HEXAGON_WHITELIST: &'static [&'static str] = &["hvx", "hvx-double"];
10099

0 commit comments

Comments
 (0)