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/stxi_f.c | |
parent | 57f6b41047e95374701ee276248f0f8615168450 (diff) | |
download | ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.tar.gz ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.zip |
start supporting 32bit arches
Diffstat (limited to 'tests/stxi_f.c')
-rw-r--r-- | tests/stxi_f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stxi_f.c b/tests/stxi_f.c index 4c218ed..1d371d1 100644 --- a/tests/stxi_f.c +++ b/tests/stxi_f.c @@ -22,7 +22,7 @@ int main(int argc, char *argv[]) assert(data[0] == -1.0); assert(data[1] == 0.0); assert(data[2] == 0.5); - erf2(f, EJIT_ARG(sizeof(float), int), EJIT_ARG(42.5, float)); + erfi2(f, EJIT_ARG(sizeof(float), int), EJIT_ARG(42.5, float)); assert(data[0] == -1.0); assert(data[1] == 42.5); assert(data[2] == 0.5); |