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/stxr_32.c | |
parent | 57f6b41047e95374701ee276248f0f8615168450 (diff) | |
download | ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.tar.gz ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.zip |
start supporting 32bit arches
Diffstat (limited to 'tests/stxr_32.c')
-rw-r--r-- | tests/stxr_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stxr_32.c b/tests/stxr_32.c index c6cde83..28d8b67 100644 --- a/tests/stxr_32.c +++ b/tests/stxr_32.c @@ -28,7 +28,7 @@ int main(int argc, char *argv[]) EJIT_ARG(sizeof(int32_t), int), EJIT_ARG(-1, int32_t) }; - ejit_run_func(f, 3, args); + ejit_run_func_i(f, 3, args); assert(data[0] == 0x12121212); assert(data[1] == 0xffffffff); assert(data[2] == 0x34343434); |