diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-07-14 16:15:37 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-07-14 16:16:25 +0300 |
commit | cf2459d4cab72e3e0072fdf76ca2f5d8f9593f78 (patch) | |
tree | 7a0cd9342047cd2a308d08c6def7bb91e2e83805 /tests/mulr_d.c | |
parent | dcca95ebeef7ad047b437c7e65bcd2d33784cae4 (diff) | |
download | ejit-cf2459d4cab72e3e0072fdf76ca2f5d8f9593f78.tar.gz ejit-cf2459d4cab72e3e0072fdf76ca2f5d8f9593f78.zip |
jit tests pass (kind of) on x86_64
Diffstat (limited to 'tests/mulr_d.c')
-rw-r--r-- | tests/mulr_d.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/mulr_d.c b/tests/mulr_d.c index dbac71f..0002c6b 100644 --- a/tests/mulr_d.c +++ b/tests/mulr_d.c @@ -17,8 +17,10 @@ int main(int argc, char *argv[]) ejit_select_compile_func(f, 0, 2, EJIT_USE64(double), do_jit); - assert(erff2(f, EJIT_ARG(-0.5f, double), EJIT_ARG(0.50f, double)) == -0.25f); - assert(erff2(f, EJIT_ARG(0.25f, double), EJIT_ARG(0.75f, double)) == 0.1875f); + assert(erff2(f, EJIT_ARG(-0.5f, double), + EJIT_ARG(0.50f, double)) == -0.25f); + assert(erff2(f, EJIT_ARG(0.25f, double), + EJIT_ARG(0.75f, double)) == 0.1875f); ejit_destroy_func(f); } |