diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-07-14 14:46:40 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-07-14 14:46:40 +0300 |
commit | dcca95ebeef7ad047b437c7e65bcd2d33784cae4 (patch) | |
tree | 39a3f9834df0dc7c27d080efef15c22889730dc5 /tests/ldxr_d.c | |
parent | 215ac4569f897b10215248c4caa3191919a555df (diff) | |
download | ejit-dcca95ebeef7ad047b437c7e65bcd2d33784cae4.tar.gz ejit-dcca95ebeef7ad047b437c7e65bcd2d33784cae4.zip |
add float + double instead of just double
Diffstat (limited to 'tests/ldxr_d.c')
-rw-r--r-- | tests/ldxr_d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ldxr_d.c b/tests/ldxr_d.c index e1e56e4..a2ed0b8 100644 --- a/tests/ldxr_d.c +++ b/tests/ldxr_d.c @@ -15,7 +15,7 @@ int main(int argc, char *argv[]) struct ejit_func *f = ejit_create_func(EJIT_TYPE(double), 2, operands); ejit_ldxr_d(f, EJIT_FPR(0), EJIT_GPR(0), EJIT_GPR(1)); - ejit_retr_f(f, EJIT_FPR(0)); + ejit_retr_d(f, EJIT_FPR(0)); ejit_select_compile_func(f, 2, 1, false, do_jit); |