From ea84a680755b5a7fa700618cbe78e3b2fc7be01d Mon Sep 17 00:00:00 2001 From: Kazuki Tsujimoto Date: Sun, 1 Sep 2019 16:25:01 +0900 Subject: [PATCH] Export rb_const_source_location_at for MJIT --- variable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variable.c b/variable.c index c7873f7586..f3d73fac63 100644 --- a/variable.c +++ b/variable.c @@ -2491,7 +2491,7 @@ rb_const_source_location(VALUE klass, ID id) return rb_const_location(klass, id, FALSE, TRUE, FALSE); } -VALUE +MJIT_FUNC_EXPORTED VALUE rb_const_source_location_at(VALUE klass, ID id) { return rb_const_location(klass, id, TRUE, FALSE, FALSE);