We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6ec4f91 + 41779f6 commit 9ad5c4dCopy full SHA for 9ad5c4d
compiler/rustc_session/src/options.rs
@@ -621,9 +621,9 @@ mod parse {
621
true
622
}
623
624
- crate fn parse_linker_flavor(slote: &mut Option<LinkerFlavor>, v: Option<&str>) -> bool {
+ crate fn parse_linker_flavor(slot: &mut Option<LinkerFlavor>, v: Option<&str>) -> bool {
625
match v.and_then(LinkerFlavor::from_str) {
626
- Some(lf) => *slote = Some(lf),
+ Some(lf) => *slot = Some(lf),
627
_ => return false,
628
629
0 commit comments