summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-12 07:14:43 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-12 07:14:43 +0000
commitd6cd22dbc55b6b3507aa0193185b45c99ff37889 (patch)
tree5e50adb6bc8a779aa97910905dba67868959257c /numeric.c
parent767ab942bc4edddee2e92a86ac93c46dd3d8df94 (diff)
Export rb_flo_div_flo for MJIT
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65682 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numeric.c b/numeric.c
index f51f398b4f..6ec7caf921 100644
--- a/numeric.c
+++ b/numeric.c
@@ -1104,7 +1104,7 @@ double_div_double(double x, double y)
}
}
-VALUE
+MJIT_FUNC_EXPORTED VALUE
rb_flo_div_flo(VALUE x, VALUE y)
{
double num = RFLOAT_VALUE(x);