diff options
Diffstat (limited to 'tests/ler_f.c')
-rw-r--r-- | tests/ler_f.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ler_f.c b/tests/ler_f.c index 00fe9ef..ecb4b3f 100644 --- a/tests/ler_f.c +++ b/tests/ler_f.c @@ -5,13 +5,13 @@ int main() { struct ejit_operand operands[2] = { - EJIT_OPERAND_FPR(0, EJIT_TYPE(double)) + EJIT_OPERAND_FPR(0, EJIT_TYPE(double)), EJIT_OPERAND_FPR(1, EJIT_TYPE(double)) }; struct ejit_func *f = ejit_create_func(EJIT_TYPE(double), 2, operands); - ejit_ler(f, EJIT_GPR(0), EJIT_FPR(0), EJIT_FPR(1)); + ejit_ler_f(f, EJIT_GPR(0), EJIT_FPR(0), EJIT_FPR(1)); ejit_retr(f, EJIT_GPR(0)); ejit_select_compile_func(f, 1, 2, EJIT_USE64(long), do_jit); |