diff options
Diffstat (limited to 'tests/stxi_d.c')
-rw-r--r-- | tests/stxi_d.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/stxi_d.c b/tests/stxi_d.c index 6de76f8..c2b9df7 100644 --- a/tests/stxi_d.c +++ b/tests/stxi_d.c @@ -4,8 +4,10 @@ static double data[] = { -1.0, 0.0, 0.5 }; -int main() +int main(int argc, char *argv[]) { + (void)argv; + bool do_jit = argc > 1; struct ejit_operand operands[2] = { EJIT_OPERAND_GPR(0, EJIT_TYPE(int)), EJIT_OPERAND_FPR(0, EJIT_TYPE(double)) |