diff options
Diffstat (limited to 'tests/movi.c')
-rw-r--r-- | tests/movi.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/movi.c b/tests/movi.c index 9854088..c7df5ec 100644 --- a/tests/movi.c +++ b/tests/movi.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(int), 0, NULL); ejit_movi(f, EJIT_GPR(0), 0xa500a500); ejit_retr(f, EJIT_GPR(0)); |