diff options
Diffstat (limited to 'tests/movr_f.c')
-rw-r--r-- | tests/movr_f.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/movr_f.c b/tests/movr_f.c index 8fa19a2..9c73ead 100644 --- a/tests/movr_f.c +++ b/tests/movr_f.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_FPR(0, EJIT_TYPE(double)) }; |