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/ldi_f.c | |
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/ldi_f.c')
-rw-r--r-- | tests/ldi_f.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/ldi_f.c b/tests/ldi_f.c index 48974d2..76a4f34 100644 --- a/tests/ldi_f.c +++ b/tests/ldi_f.c @@ -4,8 +4,10 @@ static float data = -1.5; -int main() +int main(int argc, char *argv[]) { + (void)argv; + bool do_jit = argc > 1; struct ejit_func *f = ejit_create_func(EJIT_TYPE(float), 0, NULL); ejit_ldi_f(f, EJIT_FPR(0), &data); ejit_retr_f(f, EJIT_FPR(0)); |