diff options
| author | Ralf Jung <post@ralfj.de> | 2024-11-24 12:22:01 +0100 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2024-12-14 08:24:18 +0100 |
| commit | eb2e928250066df9e40291fb9fb97308df16046e (patch) | |
| tree | a2736abcdefe9c575309ac6f281ef6511f9654e1 /compiler/rustc_codegen_gcc/src/lib.rs | |
| parent | a1740a9c3568e856f6aa12d83e008d38c9749d4b (diff) | |
| download | rust-eb2e928250066df9e40291fb9fb97308df16046e.tar.gz rust-eb2e928250066df9e40291fb9fb97308df16046e.zip | |
target_features: control separately whether enabling and disabling a target feature is allowed
Diffstat (limited to 'compiler/rustc_codegen_gcc/src/lib.rs')
| -rw-r--r-- | compiler/rustc_codegen_gcc/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_gcc/src/lib.rs b/compiler/rustc_codegen_gcc/src/lib.rs index 764e84be1fe..bb0f2fa5b01 100644 --- a/compiler/rustc_codegen_gcc/src/lib.rs +++ b/compiler/rustc_codegen_gcc/src/lib.rs @@ -483,9 +483,9 @@ fn target_features_cfg( .rust_target_features() .iter() .filter(|(_, gate, _)| gate.in_cfg()) - .filter_map(|&(feature, gate, _)| { + .filter_map(|(feature, gate, _)| { if sess.is_nightly_build() || allow_unstable || gate.requires_nightly().is_none() { - Some(feature) + Some(*feature) } else { None } |
