aboutsummaryrefslogtreecommitdiff
path: root/src/compile
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-06-28 01:23:48 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-06-28 01:23:48 +0300
commitd65c2461d26bf485b88276984bbc33054d5bce20 (patch)
tree3565b172adbc8fb84b1227a3f62dd9d610f564a4 /src/compile
parent8766bb1709e300011752fd1fa73f185f8331bee8 (diff)
downloadejit-d65c2461d26bf485b88276984bbc33054d5bce20.tar.gz
ejit-d65c2461d26bf485b88276984bbc33054d5bce20.zip
some posthaste fixes
+ Interesting that the comparison thing only failed when compiled with RELEASE=1
Diffstat (limited to 'src/compile')
-rw-r--r--src/compile/compile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compile/compile.c b/src/compile/compile.c
index d2fd3dc..ef3efcd 100644
--- a/src/compile/compile.c
+++ b/src/compile/compile.c
@@ -16,12 +16,12 @@ static void free_arena(void *arena, size_t size)
static size_t grploc_count(struct ejit_func *f)
{
- return f->gpr >= jit_v_num() ? 0 : f->gpr - jit_v_num();
+ return f->gpr < jit_v_num() ? 0 : f->gpr - jit_v_num();
}
static size_t frploc_count(struct ejit_func *f)
{
- return f->fpr >= jit_vf_num() ? 0 : f->fpr - jit_vf_num();
+ return f->fpr < jit_vf_num() ? 0 : f->fpr - jit_vf_num();
}
static size_t stack_size(struct ejit_func *f)