mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 05:49:08 +00:00
forgot a nibble
This commit is contained in:
parent
cfe21a4894
commit
2adab91d70
1 changed files with 1 additions and 1 deletions
|
@ -919,7 +919,7 @@ impl Assembler<AArch64GeneralReg, AArch64FloatReg> for AArch64Assembler {
|
|||
|
||||
#[inline(always)]
|
||||
fn call(buf: &mut Vec<'_, u8>, relocs: &mut Vec<'_, Relocation>, fn_name: String) {
|
||||
let inst = 0b1001_0100_0000_0000_0000_0000_0000u32;
|
||||
let inst = 0b1001_0100_0000_0000_0000_0000_0000_0000u32;
|
||||
buf.extend(inst.to_le_bytes());
|
||||
relocs.push(Relocation::LinkedFunction {
|
||||
offset: buf.len() as u64 - 4,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue