diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-29 14:20:07 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-29 14:20:07 +0300 |
commit | 49aa680ccdac46d1d2a7f9f250999b7ff7099548 (patch) | |
tree | 1de3bd5209feadfd147f7a05d1ac925f98b747b1 /tests/absr_f.c | |
parent | 29718f2e84478b296c3198ae6d35cfd5d79efb14 (diff) | |
download | ejit-49aa680ccdac46d1d2a7f9f250999b7ff7099548.tar.gz ejit-49aa680ccdac46d1d2a7f9f250999b7ff7099548.zip |
start adding tests
Diffstat (limited to 'tests/absr_f.c')
-rw-r--r-- | tests/absr_f.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/absr_f.c b/tests/absr_f.c new file mode 100644 index 0000000..cc070b6 --- /dev/null +++ b/tests/absr_f.c @@ -0,0 +1,19 @@ +#include <ejit/ejit.h> +#include <assert.h> +#include "do_jit.h" + +int main() +{ + struct ejit_operand operands[1] = { + EJIT_OPERAND_FPR(0, EJIT_DOUBLE) + }; + struct ejit_func *f = ejit_create_func(EJIT_DOUBLE, 1, operands); + ejit_absr_f(f, EJIT_FPR(0), EJIT_FPR(0)); + ejit_retr_f(f, EJIT_FPR(0)); + ejit_select_compile_func(f, 0, 1, do_jit); + + assert(ejit_run_func_f_1(f, ejit_double(0.0)) == 0.0); + assert(ejit_run_func_f_1(f, ejit_double(-0.0)) == 0.0); + assert(ejit_run_func_f_1(f, ejit_double(0.5)) == 0.5); + assert(ejit_run_func_f_1(f, ejit_double(-0.5)) == 0.5); +} |