diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-14 21:08:01 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-14 21:08:01 +0200 |
commit | f5c729ea59d227a507f83bd94d07f4366b46d72b (patch) | |
tree | 70d1f242100cea09acd38a71ff8c821836117cfd /tests/ldxr_d.c | |
parent | 57f6b41047e95374701ee276248f0f8615168450 (diff) | |
download | ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.tar.gz ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.zip |
start supporting 32bit arches
Diffstat (limited to 'tests/ldxr_d.c')
-rw-r--r-- | tests/ldxr_d.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ldxr_d.c b/tests/ldxr_d.c index 993952a..b5d332a 100644 --- a/tests/ldxr_d.c +++ b/tests/ldxr_d.c @@ -19,15 +19,15 @@ int main(int argc, char *argv[]) ejit_select_compile_func(f, 2, 1, false, do_jit); - assert(erff2(f, + assert(erfd2(f, EJIT_ARG(data, void *), EJIT_ARG(0 * sizeof(double), unsigned)) == data[0]); - assert(erff2(f, + assert(erfd2(f, EJIT_ARG(data, void *), EJIT_ARG(1 * sizeof(double), unsigned)) == data[1]); - assert(erff2(f, + assert(erfd2(f, EJIT_ARG(data, void *), EJIT_ARG(2 * sizeof(double), unsigned)) == data[2]); |