forgot a nibble

This commit is contained in:
Folkert 2023-09-15 18:24:09 +02:00
parent cfe21a4894
commit 2adab91d70
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C

View file

@ -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,