diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-05 18:12:31 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-05 18:12:31 +0200 |
commit | 3adb590d96e9184975344b181065a2e0fe689c2c (patch) | |
tree | a17c2c3324b5f1f938fec349d8b6fad0fb992436 /src/common.h | |
parent | cb21b31b31dc30023d6fadcab3c15b258f40be9b (diff) | |
download | ejit-3adb590d96e9184975344b181065a2e0fe689c2c.tar.gz ejit-3adb590d96e9184975344b181065a2e0fe689c2c.zip |
allow direct calls between compiled functions
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h index 64ca250..5cc0c7f 100644 --- a/src/common.h +++ b/src/common.h @@ -257,6 +257,7 @@ struct ejit_func { size_t fpr; void *arena; + void *direct_call; size_t size; }; |