mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 05:49:08 +00:00
move floats from memory
This commit is contained in:
parent
344b8ca29f
commit
09d4553019
1 changed files with 5 additions and 5 deletions
|
@ -1350,12 +1350,12 @@ impl Assembler<AArch64GeneralReg, AArch64FloatReg> for AArch64Assembler {
|
||||||
}
|
}
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
fn movesd_mem64_offset32_freg64(
|
fn movesd_mem64_offset32_freg64(
|
||||||
_buf: &mut Vec<'_, u8>,
|
buf: &mut Vec<'_, u8>,
|
||||||
_ptr: AArch64GeneralReg,
|
ptr: AArch64GeneralReg,
|
||||||
_offset: i32,
|
offset: i32,
|
||||||
_src: AArch64FloatReg,
|
src: AArch64FloatReg,
|
||||||
) {
|
) {
|
||||||
todo!()
|
Self::mov_mem64_offset32_freg64(buf, ptr, offset, src)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue