From 5e64dbec81504aaacac1e733edd5230f59670466 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 13 Jul 2024 21:36:02 +0300 Subject: make tests only compile once + Select between jit/bytecode with a runtime parameter --- tests/ldxr_i64.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests/ldxr_i64.c') diff --git a/tests/ldxr_i64.c b/tests/ldxr_i64.c index 96333d9..71b56a4 100644 --- a/tests/ldxr_i64.c +++ b/tests/ldxr_i64.c @@ -4,8 +4,10 @@ static uint64_t data[] = { 0xffffffffffffffff, 0, 0x4242424212345678 }; -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_POINTER), EJIT_OPERAND_GPR(1, EJIT_TYPE(unsigned)) -- cgit v1.2.3