summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-02-07 00:17:13 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2023-03-05 22:11:20 -0800
commit6c1b1fa1f52f7c79b98a6b86f4f1f03f069dd36b (patch)
tree8e7b58b688c2e3f6f3877ae2ef2f90a25985c6ac /vm_core.h
parent4bb4479165209af59efae2dd3248873eecc3d4f5 (diff)
downloadruby-6c1b1fa1f52f7c79b98a6b86f4f1f03f069dd36b.tar.gz
Refactor BranchStub
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm_core.h b/vm_core.h
index 9d7c54b4d1..449f9b9a26 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -511,8 +511,8 @@ struct rb_iseq_constant_body {
#endif
#if USE_MJIT
- // MJIT stores some data on each iseq.
- struct rb_mjit_unit *mjit_unit;
+ // MJIT stores { Context => Block } for each iseq.
+ VALUE mjit_blocks;
#endif
#if USE_YJIT