Skip to content

Commit a8d2f9c

Browse files
authored
Rollup merge of #132174 - RalfJung:pclmulqdq, r=calebzulawski
x86 target features: make pclmulqdq imply sse2 Based on comments in rust-lang/stdarch#1661 Fixes rust-lang/stdarch#1661
2 parents 18aa883 + 867640e commit a8d2f9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_target/src/target_features.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ const X86_ALLOWED_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
316316
("lahfsahf", Unstable(sym::lahfsahf_target_feature), &[]),
317317
("lzcnt", Stable, &[]),
318318
("movbe", Stable, &[]),
319-
("pclmulqdq", Stable, &[]),
319+
("pclmulqdq", Stable, &["sse2"]),
320320
("popcnt", Stable, &[]),
321321
("prfchw", Unstable(sym::prfchw_target_feature), &[]),
322322
("rdrand", Stable, &[]),

0 commit comments

Comments
 (0)