diff options
Diffstat (limited to 'tests/sti_32.c')
-rw-r--r-- | tests/sti_32.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/sti_32.c b/tests/sti_32.c index 12b2d7c..b748025 100644 --- a/tests/sti_32.c +++ b/tests/sti_32.c @@ -4,8 +4,10 @@ static uint32_t data[] = { 0x12121212, 0x00000000, 0x34343434 }; -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(int32_t)) }; |