summaryrefslogtreecommitdiff
path: root/libguile
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2019-08-02 17:00:07 +0200
committerAndy Wingo <wingo@pobox.com>2019-08-02 17:00:07 +0200
commitba5d1dfc6ac1f49271e913daea2fb04c5c97fefb (patch)
tree464aee5339e12e4d51ee4d846c4b5bd41698f2a3 /libguile
parent145ff63e9dec81ff1c3fd5c07393b1776f1c8aae (diff)
downloadguile-ba5d1dfc6ac1f49271e913daea2fb04c5c97fefb.tar.gz
Fix calls to handle-interrupts trampoline on ARMv7
* libguile/jit.c (initialize_jit): Keep handle_interrupts_trampoline as an address, not a function pointer.
Diffstat (limited to 'libguile')
-rw-r--r--libguile/jit.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libguile/jit.c b/libguile/jit.c
index 700b1a468..b80d9a180 100644
--- a/libguile/jit.c
+++ b/libguile/jit.c
@@ -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);