summaryrefslogtreecommitdiffstats
path: root/byterun/interp.c
diff options
context:
space:
mode:
Diffstat (limited to 'byterun/interp.c')
-rw-r--r--byterun/interp.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/byterun/interp.c b/byterun/interp.c
index d5c21f310..a61252e7a 100644
--- a/byterun/interp.c
+++ b/byterun/interp.c
@@ -941,6 +941,9 @@ value interprete(code_t prog, asize_t prog_size)
accu = Val_unit;
pc++;
Next;
+ Instruct(ISINT):
+ accu = Val_long(accu & 1);
+ Next;
/* Object-oriented operations */