diff options
Diffstat (limited to 'tests/ldi_u8.c')
-rw-r--r-- | tests/ldi_u8.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/ldi_u8.c b/tests/ldi_u8.c index 19aa555..d84a3f5 100644 --- a/tests/ldi_u8.c +++ b/tests/ldi_u8.c @@ -4,8 +4,10 @@ static uint8_t data[] = { 0xff, 0x00, 0x42 }; -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); ejit_ldi_u8(f, EJIT_GPR(0), &data[0]); |