Skip to content

Commit 867640e

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

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)