Skip to content

Commit 2817759

Browse files
Auto-format: cargo fmt --all
1 parent cb475eb commit 2817759

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

crates/codegen/src/compile.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1191,12 +1191,7 @@ impl Compiler {
11911191

11921192
// Jump to body if format <= 2 (comparison is false)
11931193
let body_block = self.new_block();
1194-
emit!(
1195-
self,
1196-
Instruction::PopJumpIfFalse {
1197-
target: body_block,
1198-
}
1199-
);
1194+
emit!(self, Instruction::PopJumpIfFalse { target: body_block });
12001195

12011196
// Raise NotImplementedError
12021197
let not_implemented_error = self.name("NotImplementedError");

0 commit comments

Comments
 (0)