Skip to content

Commit 0c919ab

Browse files
committed
Fix jmp names
1 parent b1e4ba3 commit 0c919ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rust_src/emit_asm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ fn emit_jpmcc(
100100
) -> String {
101101
let cc_str = cc_to_suffix(condition_code);
102102
let target = mangle_label(identifier);
103-
let asm = format!("jmp{cc_str} {target}");
103+
let asm = format!("j{cc_str} {target}");
104104
asm
105105
}
106106

0 commit comments

Comments
 (0)