diff options
Diffstat (limited to 'tests/sti_64.c')
-rw-r--r-- | tests/sti_64.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/sti_64.c b/tests/sti_64.c index 8985d2d..81d5c3f 100644 --- a/tests/sti_64.c +++ b/tests/sti_64.c @@ -4,8 +4,10 @@ static uint64_t data[] = { 0x1212121212121212, 0, 0x3434343434343434 }; -int main() +int main(int argc, char *argv[]) { + (void)argv; + bool do_jit = argc > 1; struct ejit_operand operands[1] = { EJIT_OPERAND_GPR(0, EJIT_TYPE(int64_t)) }; |