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, 2 insertions, 1 deletions
diff --git a/byterun/interp.c b/byterun/interp.c
index 2ef623db7..f9eae04e0 100644
--- a/byterun/interp.c
+++ b/byterun/interp.c
@@ -737,7 +737,8 @@ value interprete(code_t prog, asize_t prog_size)
uint32 sizes = *pc++;
if (Is_block(accu)) {
long index = Tag_val(accu);
- Assert(index >= 0 && index < (sizes >> 16));
+ Assert (index >= 0);
+ Assert (index < (sizes >> 16));
pc += pc[(sizes & 0xFFFF) + index];
} else {
long index = Long_val(accu);