diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-24 20:33:56 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-24 20:33:56 +0300 |
commit | fe3d9c7dfbe4190ecf0919abe474e4da4c019566 (patch) | |
tree | 91dd12b6a9980e5945e7dbde761afadd9d118d09 /src/common.h | |
parent | 5a4da8bac457f0e70e690a572eba9cf754e69a37 (diff) | |
download | ejit-fe3d9c7dfbe4190ecf0919abe474e4da4c019566.tar.gz ejit-fe3d9c7dfbe4190ecf0919abe474e4da4c019566.zip |
add initial compiler framework
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h index 21e881b..e93e920 100644 --- a/src/common.h +++ b/src/common.h @@ -123,4 +123,6 @@ union interp_ret { union interp_ret ejit_interp(struct ejit_func *f, size_t argc, struct ejit_arg args[argc], bool run, void ***labels_wb); +bool ejit_compile(struct ejit_func *f); + #endif /* EJIT_COMMON_H */ |