diff options
Diffstat (limited to 'tests/sti_16.c')
-rw-r--r-- | tests/sti_16.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/sti_16.c b/tests/sti_16.c index f2edbea..16a40d7 100644 --- a/tests/sti_16.c +++ b/tests/sti_16.c @@ -4,8 +4,10 @@ static uint16_t data[] = { 0x1212, 0x0000, 0x3434 }; -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(int16_t)) }; |