diff options
| author | kennytm <kennytm@gmail.com> | 2018-01-30 17:10:55 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-01-30 17:10:55 +0800 |
| commit | 003254e105ae56bb4c8913b63f184ace32b5dfdd (patch) | |
| tree | 91d63d4d9eacecb0d67ffcb15712c750b9f57801 | |
| parent | 44b964147e8bed485ff5993e86f8e32a5c915489 (diff) | |
| parent | 2497d10ff34bf4d03283e4562143762426492789 (diff) | |
Rollup merge of #47822 - gnzlbg:patch-1, r=alexcrichton
Whitelist aes x86 feature flag Required to fix https://github.com/rust-lang-nursery/stdsimd/issues/295 in stdsimd. Closes #44544 . r? @alexcrichton
| -rw-r--r-- | src/librustc_trans/llvm_util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_trans/llvm_util.rs b/src/librustc_trans/llvm_util.rs index 15988008de2..39ef3db9dc2 100644 --- a/src/librustc_trans/llvm_util.rs +++ b/src/librustc_trans/llvm_util.rs @@ -88,7 +88,7 @@ const X86_WHITELIST: &'static [&'static str] = &["avx\0", "avx2\0", "bmi\0", "bm "ssse3\0", "tbm\0", "lzcnt\0", "popcnt\0", "sse4a\0", "rdrnd\0", "rdseed\0", "fma\0", "xsave\0", "xsaveopt\0", "xsavec\0", - "xsaves\0", + "xsaves\0", "aes\0", "avx512bw\0", "avx512cd\0", "avx512dq\0", "avx512er\0", "avx512f\0", "avx512ifma\0", |
