Skip to content

Commit 656a2ec

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#1661Fixesrust-lang/stdarch#1661
2 parents bafe790 + 867640e commit 656a2ec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎compiler/rustc_target/src/target_features.rs‎

Lines changed: 1 addition & 1 deletion
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)