diff options
| author | newpavlov <newpavlov@gmail.com> | 2018-02-20 16:08:22 +0300 |
|---|---|---|
| committer | newpavlov <newpavlov@gmail.com> | 2018-02-20 16:08:22 +0300 |
| commit | 4c6b9bcaa9eeca8e764b53a080dd6fa94c86e592 (patch) | |
| tree | 7128eb289f053fc25da5bb0c9acb71f49fc29077 | |
| parent | 98d8fc192dc03945b5a09288fb6e12d688489928 (diff) | |
| download | rust-4c6b9bcaa9eeca8e764b53a080dd6fa94c86e592.tar.gz rust-4c6b9bcaa9eeca8e764b53a080dd6fa94c86e592.zip | |
features in alphabetic order
| -rw-r--r-- | src/librustc_trans/llvm_util.rs | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/src/librustc_trans/llvm_util.rs b/src/librustc_trans/llvm_util.rs index 4969f724128..be3d92020ab 100644 --- a/src/librustc_trans/llvm_util.rs +++ b/src/librustc_trans/llvm_util.rs @@ -83,18 +83,17 @@ const ARM_WHITELIST: &'static [&'static str] = &["neon", "v7", "vfp2", "vfp3", " const AARCH64_WHITELIST: &'static [&'static str] = &["neon", "v7"]; -const X86_WHITELIST: &'static [&'static str] = &["avx", "avx2", "bmi", "bmi2", "sse", - "sse2", "sse3", "sse4.1", "sse4.2", - "ssse3", "tbm", "lzcnt", "popcnt", - "sse4a","fma", "rdrand", "rdseed", - "xsave", "xsaveopt", "xsavec", - "xsaves", "aes", "pclmulqdq", - "avx512bw", "avx512cd", - "avx512dq", "avx512er", - "avx512f", "avx512ifma", - "avx512pf", "avx512vbmi", - "avx512vl", "avx512vpopcntdq", - "mmx", "fxsr"]; +const X86_WHITELIST: &'static [&'static str] = &["aes", "avx", "avx2", "avx512bw", + "avx512cd", "avx512dq", "avx512er", + "avx512f", "avx512ifma", "avx512pf", + "avx512vbmi", "avx512vl", "avx512vpopcntdq", + "bmi", "bmi2", "fma", "fxsr", + "lzcnt", "mmx", "pclmulqdq", + "popcnt", "rdrand", "rdseed", + "sse", "sse2", "sse3", "sse4.1", + "sse4.2", "sse4a", "ssse3", + "tbm", "xsave", "xsavec", + "xsaveopt", "xsaves"]; const HEXAGON_WHITELIST: &'static [&'static str] = &["hvx", "hvx-double"]; |
