Skip to content

Commit

Permalink
PR13079 (Save and restore frame pointer across Iextcall on ARM64): up…
Browse files Browse the repository at this point in the history
…stream c39c3f9
  • Loading branch information
mshinwell committed Aug 16, 2024
1 parent 12e6f21 commit 067043f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ocaml/runtime/arm64.S
Original file line number Diff line number Diff line change
Expand Up @@ -699,10 +699,10 @@ FUNCTION(caml_start_program)

L(jump_to_caml):
/* Set up stack frame and save callee-save registers */
CFI_OFFSET(29, -160)
CFI_OFFSET(30, -152)
stp x29, x30, [sp, -160]!
CFI_ADJUST(160)
CFI_OFFSET(29, 0)
CFI_OFFSET(30, 8)
add x29, sp, #0
stp x19, x20, [sp, 16]
stp x21, x22, [sp, 32]
Expand Down

0 comments on commit 067043f

Please sign in to comment.