diff options
Diffstat (limited to 'tests/ldi_u16.c')
-rw-r--r-- | tests/ldi_u16.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/ldi_u16.c b/tests/ldi_u16.c index b73c1da..1f30bd2 100644 --- a/tests/ldi_u16.c +++ b/tests/ldi_u16.c @@ -4,8 +4,10 @@ static uint16_t data[] = { 0xffff, 0x0000, 0x4242 }; -int main() +int main(int argc, char *argv[]) { + (void)argv; + bool do_jit = argc > 1; struct ejit_func *f = ejit_create_func(EJIT_TYPE(unsigned long), 0, NULL); |