diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-10-12 23:29:32 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-10-12 23:29:32 +0300 |
commit | 818b727df58685c19d9072154f73f7ad3db023db (patch) | |
tree | 2903477f8388a037621f12a5b41750cb35721a37 /src | |
parent | 89313128e8d0427b1f834fb262f52d6135b98f92 (diff) | |
download | ejit-818b727df58685c19d9072154f73f7ad3db023db.tar.gz ejit-818b727df58685c19d9072154f73f7ad3db023db.zip |
+ Labels require expressions after them when compiled with clang
+ CFLAGS is predefined by bmake to use DEBUG, remove it since it
was kind of pointless anyway
+ Tests don't yet pass, apparently openbsd disagrees with some of my
runtime type decisions
Diffstat (limited to 'src')
-rw-r--r-- | src/interp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp.c b/src/interp.c index ad532f2..7fdd4b1 100644 --- a/src/interp.c +++ b/src/interp.c @@ -258,7 +258,7 @@ union interp_ret ejit_run(struct ejit_func *f, size_t paramc, struct ejit_arg pa }; } -top: +top:; union interp_ret retval = {.i = 0}; union fpr { double d; |