diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-28 01:23:48 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-28 01:23:48 +0300 |
commit | d65c2461d26bf485b88276984bbc33054d5bce20 (patch) | |
tree | 3565b172adbc8fb84b1227a3f62dd9d610f564a4 /src/compile | |
parent | 8766bb1709e300011752fd1fa73f185f8331bee8 (diff) | |
download | ejit-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.c | 4 |
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) |