diff options
Diffstat (limited to 'tests/negr.c')
-rw-r--r-- | tests/negr.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/negr.c b/tests/negr.c index 4e3b34c..84241e8 100644 --- a/tests/negr.c +++ b/tests/negr.c @@ -2,8 +2,10 @@ #include <assert.h> #include "do_jit.h" -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)) }; |