mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-07 13:18:20 +00:00
Fixed linter
This commit is contained in:
@@ -1763,8 +1763,11 @@ impl Machine for MachineARM64 {
|
|||||||
if stack_offset < 0x1_0000 {
|
if stack_offset < 0x1_0000 {
|
||||||
self.assembler
|
self.assembler
|
||||||
.emit_mov_imm(Location::GPR(tmp), (-stack_offset as i64) as u64)?;
|
.emit_mov_imm(Location::GPR(tmp), (-stack_offset as i64) as u64)?;
|
||||||
self.assembler
|
self.assembler.emit_str(
|
||||||
.emit_str(Size::S64, location, Location::Memory2(GPR::X29, tmp, Multiplier::One, 0))?;
|
Size::S64,
|
||||||
|
location,
|
||||||
|
Location::Memory2(GPR::X29, tmp, Multiplier::One, 0),
|
||||||
|
)?;
|
||||||
} else {
|
} else {
|
||||||
self.assembler
|
self.assembler
|
||||||
.emit_mov_imm(Location::GPR(tmp), (stack_offset as i64) as u64)?;
|
.emit_mov_imm(Location::GPR(tmp), (stack_offset as i64) as u64)?;
|
||||||
|
|||||||
Reference in New Issue
Block a user