Fix some assorted warnings.

This commit is contained in:
Nick Lewycky
2019-12-02 16:51:49 -08:00
parent 652433eb61
commit 3381e8867c
4 changed files with 8 additions and 8 deletions

View File

@ -1274,9 +1274,9 @@ impl Emitter for Assembler {
fn emit_inline_breakpoint(&mut self, ty: InlineBreakpointType) {
dynasm!(self
; ud2
; .byte 0x0f ; .byte (0xb9u8 as i8) // ud
; .byte 0x0f ; .byte 0xb9u8 as i8 // ud
; int -1
; .byte (ty as u8 as i8)
; .byte ty as u8 as i8
);
}
}