diff options
Diffstat (limited to 'tests/jmpi_local.c')
-rw-r--r-- | tests/jmpi_local.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/jmpi_local.c b/tests/jmpi_local.c index 76cba7c..c19a8ca 100644 --- a/tests/jmpi_local.c +++ b/tests/jmpi_local.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); struct ejit_reloc r = ejit_jmp(f); ejit_reti(f, 0); |