diff --git a/lib/filecheck/src/explain.rs b/lib/filecheck/src/explain.rs index 825f162079..75fe6f9286 100644 --- a/lib/filecheck/src/explain.rs +++ b/lib/filecheck/src/explain.rs @@ -112,11 +112,11 @@ impl<'a> Display for Explainer<'a> { // Emit the match message itself. writeln!(f, - "{} #{}{}: {}", - if m.is_match { "Matched" } else { "Missed" }, - m.directive, - if m.is_not { " not" } else { "" }, - m.regex)?; + "{} #{}{}: {}", + if m.is_match { "Matched" } else { "Missed" }, + m.directive, + if m.is_not { " not" } else { "" }, + m.regex)?; // Emit any variable definitions. if let Ok(found) = self.vardefs.binary_search_by_key(&m.directive, |v| v.directive) { diff --git a/lib/reader/src/parser.rs b/lib/reader/src/parser.rs index e9a5a26a02..bd6fd8fce8 100644 --- a/lib/reader/src/parser.rs +++ b/lib/reader/src/parser.rs @@ -481,8 +481,8 @@ impl<'a> Parser<'a> { "set" => { last_set_loc = Some(self.loc); isaspec::parse_options(self.consume_line().trim().split_whitespace(), - &mut flag_builder, - &self.loc)?; + &mut flag_builder, + &self.loc)?; } "isa" => { last_set_loc = None;