Skip to content

Commit

Permalink
Rerun cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
losfair committed Nov 10, 2019
1 parent 03a9d1a commit 03c5614
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/singlepass-backend/src/codegen_x64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2012,7 +2012,12 @@ impl FunctionCodeGenerator<CodegenError> for X64FunctionCode {
.as_mut()
.unwrap()
.insert(a.get_offset(), callback);
Self::mark_trappable(a, &self.machine, &mut self.fsm, &mut self.control_stack);
Self::mark_trappable(
a,
&self.machine,
&mut self.fsm,
&mut self.control_stack,
);
a.emit_inline_breakpoint(InlineBreakpointType::Middleware);
}
InternalEvent::FunctionBegin(_) | InternalEvent::FunctionEnd => {}
Expand Down

0 comments on commit 03c5614

Please sign in to comment.