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/escapei_float.c | |
parent | 57f6b41047e95374701ee276248f0f8615168450 (diff) | |
download | ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.tar.gz ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.zip |
start supporting 32bit arches
Diffstat (limited to 'tests/escapei_float.c')
-rw-r--r-- | tests/escapei_float.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/escapei_float.c b/tests/escapei_float.c index c1c0993..f0fd052 100644 --- a/tests/escapei_float.c +++ b/tests/escapei_float.c @@ -6,7 +6,7 @@ static float func(int32_t a, float b) { return b + a; } -static double escape_func(size_t argc, const struct ejit_arg args[argc]) +static float escape_func(size_t argc, const struct ejit_arg args[argc]) { assert(argc == 2); assert(args[0].type == EJIT_INT32); |