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/addr_f.c | |
parent | dcca95ebeef7ad047b437c7e65bcd2d33784cae4 (diff) | |
download | ejit-cf2459d4cab72e3e0072fdf76ca2f5d8f9593f78.tar.gz ejit-cf2459d4cab72e3e0072fdf76ca2f5d8f9593f78.zip |
jit tests pass (kind of) on x86_64
Diffstat (limited to 'tests/addr_f.c')
-rw-r--r-- | tests/addr_f.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/addr_f.c b/tests/addr_f.c index 6eecbfb..2ec932e 100644 --- a/tests/addr_f.c +++ b/tests/addr_f.c @@ -19,10 +19,10 @@ int main(int argc, char *argv[]) ejit_select_compile_func(f, 0, 2, EJIT_USE64(float), do_jit); assert(erff2(f, EJIT_ARG(42., float), EJIT_ARG(69., float) - ) == 111.); + ) == 111.); assert(erff2(f, EJIT_ARG(42.5, float), EJIT_ARG(69.5, float) - ) == 112.); + ) == 112.); ejit_destroy_func(f); } |