mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-29 16:30:19 +02:00
Fix compilation of handle-interrupts
* libguile/jit.c (compile_handle_interrupts): Fix check for blocked interrupts.
This commit is contained in:
parent
f8229c603d
commit
377c3e117e
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue