summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-11-12 00:08:39 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-11-12 16:09:36 +0900
commit2de3feab44c928c30f35a4a3a445b4fdfc225024 (patch)
treedf318e540181c50ef635ba931b7ce64de8c64d07 /compile.c
parent7c22898a3a5a10c8c71683918b53ec2d17fdc621 (diff)
Get rid of `__` prefix which is presereved by C standard
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compile.c b/compile.c
index e0b850556e..8c83903115 100644
--- a/compile.c
+++ b/compile.c
@@ -6902,7 +6902,7 @@ compile_call(rb_iseq_t *iseq, LINK_ANCHOR *const ret, const NODE *const node, in
if (bf == NULL) {
if (strcmp("inline!", builtin_func) == 0) {
int inline_index = GET_VM()->builtin_inline_index++;
- snprintf(inline_func, 0x20, "__builtin_inline%d", inline_index);
+ snprintf(inline_func, 0x20, "rb_compiled_inline%d", inline_index);
builtin_func = inline_func;
args_node = NULL;
goto retry;