Skip to content

Commit 867640e

Browse files
committed
x86 target features: make pclmulqdq imply sse2
1 parent ae4c6b6 commit 867640e

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)