From 9808e010907bb16068497d9f0f8593a7165fa42d Mon Sep 17 00:00:00 2001 From: Koichi Sasada Date: Wed, 25 Dec 2019 14:37:53 +0900 Subject: [PATCH] export a function for MJIT. rb_iseq_complete() can be used by MJIT. --- compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.c b/compile.c index 4343443da5..7043ba9a73 100644 --- a/compile.c +++ b/compile.c @@ -11452,7 +11452,7 @@ rb_ibf_load_iseq_complete(rb_iseq_t *iseq) } #if USE_LAZY_LOAD -const rb_iseq_t * +MJIT_FUNC_EXPORTED const rb_iseq_t * rb_iseq_complete(const rb_iseq_t *iseq) { rb_ibf_load_iseq_complete((rb_iseq_t *)iseq);