diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-07-13 21:36:02 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-07-13 21:36:02 +0300 |
commit | 5e64dbec81504aaacac1e733edd5230f59670466 (patch) | |
tree | 904038fae0b1ceb43f3f9b9de9f843f5d059d068 /tests/do_jit.h | |
parent | 26fcfcf333e852b256af8ed4ca7f9e497958f6d8 (diff) | |
download | ejit-5e64dbec81504aaacac1e733edd5230f59670466.tar.gz ejit-5e64dbec81504aaacac1e733edd5230f59670466.zip |
make tests only compile once
+ Select between jit/bytecode with a runtime parameter
Diffstat (limited to 'tests/do_jit.h')
-rw-r--r-- | tests/do_jit.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/do_jit.h b/tests/do_jit.h index 637ed7d..5be682b 100644 --- a/tests/do_jit.h +++ b/tests/do_jit.h @@ -1,12 +1,6 @@ #ifndef DOJIT_H #define DOJIT_H -#ifdef FORCE_BCODE -static bool do_jit = false; -#else -static bool do_jit = true; -#endif - #define erf3 ejit_run_func_3 #define erf2 ejit_run_func_2 #define erf1 ejit_run_func_1 |