1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-28 16:00:22 +02:00

Fix compilation of handle-interrupts

* libguile/jit.c (compile_handle_interrupts): Fix check for blocked
  interrupts.
This commit is contained in:
Andy Wingo 2018-09-07 14:22:48 +02:00
parent f8229c603d
commit 377c3e117e

View file

@ -3021,7 +3021,7 @@ compile_handle_interrupts (scm_jit_state *j)
#endif
none_pending = jit_beqi (T0, SCM_UNPACK (SCM_EOL));
jit_ldxi_i (T0, THREAD, thread_offset_block_asyncs);
blocked = jit_beqi (T0, 0);
blocked = jit_bnei (T0, 0);
emit_store_current_ip (j, T0);
mra = emit_movi (j, T0, 0);