diff options
Diffstat (limited to 'tests/movi_f.c')
-rw-r--r-- | tests/movi_f.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/movi_f.c b/tests/movi_f.c index 73d22e3..f003c2d 100644 --- a/tests/movi_f.c +++ b/tests/movi_f.c @@ -2,8 +2,10 @@ #include <assert.h> #include "do_jit.h" -int main() +int main(int argc, char *argv[]) { + (void)argv; + bool do_jit = argc > 1; struct ejit_func *f = ejit_create_func(EJIT_TYPE(double), 0, NULL); ejit_movi_f(f, EJIT_FPR(0), 3.14159f); ejit_retr_f(f, EJIT_FPR(0)); |