diff options
| author | sayantn <sayantn05@gmail.com> | 2025-03-04 20:08:28 +0530 |
|---|---|---|
| committer | sayantn <sayantn05@gmail.com> | 2025-03-05 05:34:37 +0530 |
| commit | 7c2434c52caf1fc4269dd2e376fb332d0dd78143 (patch) | |
| tree | 5593a937563e033f2c7c4ba23299a675692eeeca /compiler/rustc_target/src | |
| parent | 0ec1d460bb898a22de37bcc040f86449371bdbdb (diff) | |
| download | rust-7c2434c52caf1fc4269dd2e376fb332d0dd78143.tar.gz rust-7c2434c52caf1fc4269dd2e376fb332d0dd78143.zip | |
Add the `movrs` target feature and `movrs_target_feature` feature gate
Diffstat (limited to 'compiler/rustc_target/src')
| -rw-r--r-- | compiler/rustc_target/src/target_features.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_target/src/target_features.rs b/compiler/rustc_target/src/target_features.rs index 1a4903cdbfa..e46da2359b9 100644 --- a/compiler/rustc_target/src/target_features.rs +++ b/compiler/rustc_target/src/target_features.rs @@ -423,6 +423,7 @@ static X86_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[ ("lahfsahf", Unstable(sym::lahfsahf_target_feature), &[]), ("lzcnt", Stable, &[]), ("movbe", Stable, &[]), + ("movrs", Unstable(sym::movrs_target_feature), &[]), ("pclmulqdq", Stable, &["sse2"]), ("popcnt", Stable, &[]), ("prfchw", Unstable(sym::prfchw_target_feature), &[]), |
