Skip to content

Commit

Permalink
apply rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbepop committed Nov 24, 2023
1 parent d6da540 commit a9381a8
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions crates/wasmi/src/engine/regmach/tests/op/cmp_br.rs
Original file line number Diff line number Diff line change
Expand Up @@ -539,10 +539,7 @@ fn block_i64_eqz_fuse() {
));
TranslationTest::new(wasm)
.expect_func_instrs([
Instruction::branch_i64_eqz(
Register::from_i16(0),
BranchOffset::from(1),
),
Instruction::branch_i64_eqz(Register::from_i16(0), BranchOffset::from(1)),
Instruction::Return,
])
.run()
Expand All @@ -564,10 +561,7 @@ fn if_i64_eqz_fuse() {
));
TranslationTest::new(wasm)
.expect_func_instrs([
Instruction::branch_i64_nez(
Register::from_i16(0),
BranchOffset::from(1),
),
Instruction::branch_i64_nez(Register::from_i16(0), BranchOffset::from(1)),
Instruction::Return,
])
.run()
Expand Down

0 comments on commit a9381a8

Please sign in to comment.