Skip to content

Commit 8e00273

Browse files
committed
Formatting
1 parent 29d1f2e commit 8e00273

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

crates/stdsimd-verify/tests/mips.rs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,12 +318,18 @@ fn matches(rust: &Function, mips: &MsaIntrinsic) -> Result<(), String> {
318318
let actual = rust.instrs[0].replace(".", "_");
319319
let expected = mips.instruction.replace(".", "_");
320320
if actual != expected {
321-
bail!("wrong instruction: \"{}\" != \"{}\"", rust.instrs[0], mips.instruction);
321+
bail!(
322+
"wrong instruction: \"{}\" != \"{}\"",
323+
rust.instrs[0],
324+
mips.instruction
325+
);
322326
}
323327
} else {
324328
bail!(
325329
"missing assert_instr for \"{}\" (should be \"{}\")",
326-
mips.id, mips.instruction);
330+
mips.id,
331+
mips.instruction
332+
);
327333
}
328334

329335
Ok(())

0 commit comments

Comments
 (0)