diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-29 14:20:07 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-29 14:20:07 +0300 |
commit | 49aa680ccdac46d1d2a7f9f250999b7ff7099548 (patch) | |
tree | 1de3bd5209feadfd147f7a05d1ac925f98b747b1 /tests/do_jit.h | |
parent | 29718f2e84478b296c3198ae6d35cfd5d79efb14 (diff) | |
download | ejit-49aa680ccdac46d1d2a7f9f250999b7ff7099548.tar.gz ejit-49aa680ccdac46d1d2a7f9f250999b7ff7099548.zip |
start adding tests
Diffstat (limited to 'tests/do_jit.h')
-rw-r--r-- | tests/do_jit.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/do_jit.h b/tests/do_jit.h new file mode 100644 index 0000000..d0d4921 --- /dev/null +++ b/tests/do_jit.h @@ -0,0 +1,10 @@ +#ifndef DOJIT_H +#define DOJIT_H + +#ifdef FORCE_BCODE +static bool do_jit = false; +#else +static bool do_jit = true; +#endif + +#endif /* DOJIT_H */ |