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