Skip to content

Commit ec616d5

Browse files
author
Jorge Aparicio
committed
refactor: if -> match
1 parent 5943507 commit ec616d5

File tree

1 file changed

+11
-12
lines changed
  • src/librustc_back/target

1 file changed

+11
-12
lines changed

src/librustc_back/target/mod.rs

+11-12
Original file line numberDiff line numberDiff line change
@@ -69,19 +69,18 @@ macro_rules! supported_targets {
6969
/// List of supported targets
7070
pub const TARGETS: &'static [&'static str] = &[$($triple),*];
7171

72-
// this would use a match if stringify! were allowed in pattern position
7372
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
73+
match target {
74+
$(
75+
$triple => {
76+
let mut t = $module::target();
77+
t.options.is_builtin = true;
78+
debug!("Got builtin target: {:?}", t);
79+
Some(t)
80+
},
81+
)+
82+
_ => None
83+
}
8584
}
8685
)
8786
}

0 commit comments

Comments
 (0)