Skip to content

Commit

Permalink
Whitelist aes x86 feature flag
Browse files Browse the repository at this point in the history
Required to fix rust-lang/stdarch#295 in stdsimd.

r? @alexcrichton
  • Loading branch information
gnzlbg committed Jan 28, 2018
1 parent 7046a40 commit 2497d10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc_trans/llvm_util.rs
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 2497d10

Please sign in to comment.