summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authorMaxime Chevalier-Boisvert <maxime.chevalierboisvert@shopify.com>2021-02-09 16:24:06 -0500
committerAlan Wu <XrXr@users.noreply.github.com>2021-10-20 18:19:28 -0400
commit9d8cc01b758f9385bd4c806f3daff9719e07faa0 (patch)
tree2e5eca04a45f899655f79a6cfb49e7573fb12f4c /vm_core.h
parent6341fc21b2e15dca82253da41047ce37409508fc (diff)
WIP JIT-to-JIT returns
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/vm_core.h b/vm_core.h
index 6b627f4a82..23ebf37b1a 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -790,6 +790,8 @@ typedef struct rb_control_frame_struct {
#if VM_DEBUG_BP_CHECK
VALUE *bp_check; /* cfp[7] */
#endif
+ // Return address for uJIT code
+ void *jit_return;
} rb_control_frame_t;
extern const rb_data_type_t ruby_threadptr_data_type;