aboutsummaryrefslogtreecommitdiff
path: root/src/interp.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-04-10 22:22:33 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2025-04-10 22:22:33 +0300
commit531d307d310881e69efc8ae8c8119f5f5799e0f9 (patch)
tree0038e06d042db954cd85f8b0076f5d1394a55421 /src/interp.c
parentbe5c83ba8e57bc67beee41bc2c7227e6b8ebd9d5 (diff)
downloadejit-tail.tar.gz
ejit-tail.zip
improve tests a bittail
+ Runs tests on all arches that I have easy access to
Diffstat (limited to 'src/interp.c')
-rw-r--r--src/interp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp.c b/src/interp.c
index 6f94f98..894be30 100644
--- a/src/interp.c
+++ b/src/interp.c
@@ -1063,7 +1063,7 @@ top:
DISPATCH();
DO(TAILI);
- f = (struct ejit_func *)(uintptr_t)i.o;
+ f = (struct ejit_func *)i.p;
assert(!f->direct_call && "trying to interpret compiled fun");