1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-21 12:10:26 +02:00

Fix calls to handle-interrupts trampoline on ARMv7

* libguile/jit.c (initialize_jit): Keep handle_interrupts_trampoline as
  an address, not a function pointer.
This commit is contained in:
Andy Wingo 2019-08-02 17:00:07 +02:00
parent 145ff63e9d
commit ba5d1dfc6a

View file

@ -4733,8 +4733,6 @@ initialize_jit (void)
handle_interrupts_trampoline =
emit_code (j, emit_handle_interrupts_trampoline);
ASSERT (handle_interrupts_trampoline);
handle_interrupts_trampoline = jit_address_to_function_pointer
(handle_interrupts_trampoline);
scm_jit_return_to_interpreter_trampoline =
emit_code (j, emit_return_to_interpreter_trampoline);