diff options
| author | Caleb Zulawski <caleb.zulawski@gmail.com> | 2024-08-02 00:20:49 -0400 |
|---|---|---|
| committer | Caleb Zulawski <caleb.zulawski@gmail.com> | 2024-08-07 00:41:48 -0400 |
| commit | fbd618d4aa8f3a6c998b81aa83a543d4c09d9bb3 (patch) | |
| tree | 862c48d9ba71d61315799d32f844989c22ff22ea /compiler/rustc_codegen_ssa/src | |
| parent | 3c48f6548bce89b459952f8d7ca077cfa99159aa (diff) | |
| download | rust-fbd618d4aa8f3a6c998b81aa83a543d4c09d9bb3.tar.gz rust-fbd618d4aa8f3a6c998b81aa83a543d4c09d9bb3.zip | |
Refactor and fill out target feature lists
Diffstat (limited to 'compiler/rustc_codegen_ssa/src')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/target_features.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/rustc_codegen_ssa/src/target_features.rs b/compiler/rustc_codegen_ssa/src/target_features.rs index 24b2c9c51c6..536f39375bb 100644 --- a/compiler/rustc_codegen_ssa/src/target_features.rs +++ b/compiler/rustc_codegen_ssa/src/target_features.rs @@ -160,7 +160,7 @@ pub(crate) fn provide(providers: &mut Providers) { .target .supported_target_features() .iter() - .map(|&(a, b)| (a.to_string(), b.as_feature_name())) + .map(|&(a, b, _)| (a.to_string(), b.as_feature_name())) .collect() } }, @@ -168,9 +168,9 @@ pub(crate) fn provide(providers: &mut Providers) { let implied_features = tcx .sess .target - .implied_target_features() + .supported_target_features() .iter() - .map(|(f, i)| (Symbol::intern(f), i)) + .map(|(f, _, i)| (Symbol::intern(f), i)) .collect::<FxHashMap<_, _>>(); // implied target features have their own implied target features, so we traverse the |
