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/eqr_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/eqr_f.c')
-rw-r--r-- | tests/eqr_f.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/eqr_f.c b/tests/eqr_f.c index 572eeda..0faa2a7 100644 --- a/tests/eqr_f.c +++ b/tests/eqr_f.c @@ -20,7 +20,8 @@ int main(int argc, char *argv[]) assert(erf2(f, EJIT_ARG(1, float), EJIT_ARG(1, float)) == 1); assert(erf2(f, EJIT_ARG(1, float), EJIT_ARG(0, float)) == 0); - assert(erf2(f, EJIT_ARG(0.0/0.0, float), EJIT_ARG(0.0/0.0, float)) == 0); + assert(erf2(f, EJIT_ARG(0.0/0.0, float), + EJIT_ARG(0.0/0.0, float)) == 0); ejit_destroy_func(f); } |