Skip to content

Commit 0de9a8a

Browse files
authored
Rollup merge of rust-lang#47822 - gnzlbg:patch-1, r=alexcrichton
Whitelist aes x86 feature flag Required to fix rust-lang/stdarch#295 in stdsimd. Closes rust-lang#44544 . r? @alexcrichton
2 parents f504a9b + 2497d10 commit 0de9a8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_trans/llvm_util.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ const X86_WHITELIST: &'static [&'static str] = &["avx\0", "avx2\0", "bmi\0", "bm
8888
"ssse3\0", "tbm\0", "lzcnt\0", "popcnt\0",
8989
"sse4a\0", "rdrnd\0", "rdseed\0", "fma\0",
9090
"xsave\0", "xsaveopt\0", "xsavec\0",
91-
"xsaves\0",
91+
"xsaves\0", "aes\0",
9292
"avx512bw\0", "avx512cd\0",
9393
"avx512dq\0", "avx512er\0",
9494
"avx512f\0", "avx512ifma\0",

0 commit comments

Comments
 (0)