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_8.c | |
parent | 57f6b41047e95374701ee276248f0f8615168450 (diff) | |
download | ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.tar.gz ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.zip |
start supporting 32bit arches
Diffstat (limited to 'tests/stxi_8.c')
-rw-r--r-- | tests/stxi_8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stxi_8.c b/tests/stxi_8.c index 59ec4c7..4a461f7 100644 --- a/tests/stxi_8.c +++ b/tests/stxi_8.c @@ -22,7 +22,7 @@ int main(int argc, char *argv[]) assert(data[0] == 0x12); assert(data[1] == 0x00); assert(data[2] == 0x34); - erf2(f, EJIT_ARG(sizeof(int8_t), int), EJIT_ARG(-1, int8_t)); + erfi2(f, EJIT_ARG(sizeof(int8_t), int), EJIT_ARG(-1, int8_t)); assert(data[0] == 0x12); assert(data[1] == 0xff); assert(data[2] == 0x34); |