diff options
author | Takashi Kokubun <[email protected]> | 2020-03-12 22:21:31 -0700 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2020-03-12 22:21:32 -0700 |
commit | 8562bfd1501a69aa736ba4f699a77940b2cdd9b1 (patch) | |
tree | 2846ba5722ce184e20bdcbbb4f986ff76ddd68f6 /mjit.h | |
parent | a90117c8c90134994bac3146d282a6f73dd17416 (diff) |
Move code to mark jit_unit's cc_entries to mjit.c
Diffstat (limited to 'mjit.h')
-rw-r--r-- | mjit.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -93,7 +93,7 @@ extern struct mjit_cont *mjit_cont_new(rb_execution_context_t *ec); extern void mjit_cont_free(struct mjit_cont *cont); extern void mjit_add_class_serial(rb_serial_t class_serial); extern void mjit_remove_class_serial(rb_serial_t class_serial); -const struct rb_callcache ** mjit_iseq_cc_entries(const struct rb_iseq_constant_body *const body); +extern void mjit_mark_cc_entries(const struct rb_iseq_constant_body *const body); // A threshold used to reject long iseqs from JITting as such iseqs // takes too much time to be compiled. |