diff options
Diffstat (limited to 'tests/ner.c')
-rw-r--r-- | tests/ner.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/ner.c b/tests/ner.c index b83ccf3..9432a56 100644 --- a/tests/ner.c +++ b/tests/ner.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[2] = { EJIT_OPERAND_GPR(0, EJIT_TYPE(long)), EJIT_OPERAND_GPR(1, EJIT_TYPE(long)) |