We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5943507 commit ec616d5Copy full SHA for ec616d5
src/librustc_back/target/mod.rs
@@ -69,19 +69,18 @@ macro_rules! supported_targets {
69
/// List of supported targets
70
pub const TARGETS: &'static [&'static str] = &[$($triple),*];
71
72
- // this would use a match if stringify! were allowed in pattern position
73
fn load_specific(target: &str) -> Option<Target> {
74
- if false { }
75
- $(
76
- else if target == $triple {
77
- let mut t = $module::target();
78
- t.options.is_builtin = true;
79
- debug!("Got builtin target: {:?}", t);
80
- return Some(t);
81
- }
82
- )*
83
-
84
- None
+ match target {
+ $(
+ $triple => {
+ let mut t = $module::target();
+ t.options.is_builtin = true;
+ debug!("Got builtin target: {:?}", t);
+ Some(t)
+ },
+ )+
+ _ => None
+ }
85
}
86
)
87
0 commit comments