Skip to content

Commit

Permalink
Rollup merge of rust-lang#47822 - gnzlbg:patch-1, r=alexcrichton
Browse files Browse the repository at this point in the history
Whitelist aes x86 feature flag

Required to fix rust-lang/stdarch#295 in stdsimd.

Closes rust-lang#44544 .

r? @alexcrichton
  • Loading branch information
kennytm authored Jan 29, 2018
2 parents f504a9b + 2497d10 commit 0de9a8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc_trans/llvm_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 0de9a8a

Please sign in to comment.