Skip to content

Commit

Permalink
Fix for bad toolchains.
Browse files Browse the repository at this point in the history
  • Loading branch information
karlosz committed Oct 6, 2024
1 parent 76bc9c0 commit 0402133
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/runtime/arm64-assem.S
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ GNAME(call_into_c):
stp x12,x13, [sp,#96]
stp x14,x15, [sp,#112]
stp x16,x17, [sp,#128]
stp x18,lr, [sp,#144]
stp x18,x30, [sp,#144]

stp d0,d1, [sp,#160]
stp d2,d3, [sp,#176]
Expand Down Expand Up @@ -367,7 +367,7 @@ GNAME(call_into_c):
ldp d2,d3, [sp,#176]
ldp d0,d1, [sp,#160]

ldp x18,lr, [sp,#144]
ldp x18,x30, [sp,#144]
ldp x16,x17, [sp,#128]
ldp x14,x15, [sp,#112]
ldp x12,x13, [sp,#96]
Expand Down Expand Up @@ -425,7 +425,7 @@ GNAME(call_into_c):
stp x12,x13, [sp,#96]
stp x14,x15, [sp,#112]
stp x16,x17, [sp,#128]
stp x18,lr, [sp,#144]
stp x18,x30, [sp,#144]

stp d0,d1, [sp,#160]
stp d2,d3, [sp,#176]
Expand Down Expand Up @@ -459,7 +459,7 @@ GNAME(call_into_c):
ldp d2,d3, [sp,#176]
ldp d0,d1, [sp,#160]

ldp x18,lr, [sp,#144]
ldp x18,x30, [sp,#144]
ldp x16,x17, [sp,#128]
ldp x14,x15, [sp,#112]
ldp x12,x13, [sp,#96]
Expand Down

0 comments on commit 0402133

Please sign in to comment.