aboutsummaryrefslogtreecommitdiffstats
path: root/builtin.c
diff options
context:
space:
mode:
authorKoichi Sasada <ko1@atdot.net>2019-12-25 14:10:35 +0900
committerKoichi Sasada <ko1@atdot.net>2019-12-25 14:12:33 +0900
commitd9bf9c572f461c282fa6e65833e98bc7d453a66f (patch)
tree23279ca8875acf9c6f039e5971faf7292bfac8b7 /builtin.c
parent81e377023c490998a3fec245ca2fb2b3c710c2c6 (diff)
downloadruby-d9bf9c572f461c282fa6e65833e98bc7d453a66f.tar.gz
take care of USE_LAZY_LOAD=1.
On USE_LAZY_LOAD=1, the iseq should be loaded. So rb_iseq_check() is needed. Furthermore, now lazy loading with builtin_function_table is not supported, so it should cancel lazy loading.
Diffstat (limited to 'builtin.c')
-rw-r--r--builtin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin.c b/builtin.c
index 67b43c7f5c..6de77228d0 100644
--- a/builtin.c
+++ b/builtin.c
@@ -51,7 +51,7 @@ rb_load_with_builtin_functions(const char *feature_name, const struct rb_builtin
vm->builtin_function_table = NULL;
// exec
- rb_iseq_eval(iseq);
+ rb_iseq_eval(rb_iseq_check(iseq));
}
#endif