summaryrefslogtreecommitdiff
path: root/vm_insnhelper.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-12-19 18:04:47 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-12-19 18:04:47 +0900
commit8148f88b92a6b8d850b991afe74fb0d0f9c11887 (patch)
tree61fa5957c204cb550edd0f9a7e5827feb8fc8d93 /vm_insnhelper.c
parent0d3dc2ec807c313d0952d15ac4f30bc8586bba2f (diff)
ALWAYS_INLINE implies inline
Diffstat (limited to 'vm_insnhelper.c')
-rw-r--r--vm_insnhelper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index 73d90e6625..6c7ff594c2 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -1796,7 +1796,7 @@ vm_search_method_slowpath0(VALUE cd_owner, struct rb_call_data *cd, VALUE klass)
}
#ifndef MJIT_HEADER
-ALWAYS_INLINE(static inline const struct rb_callcache *vm_search_method_fastpath(VALUE cd_owner, struct rb_call_data *cd, VALUE klass));
+ALWAYS_INLINE(static const struct rb_callcache *vm_search_method_fastpath(VALUE cd_owner, struct rb_call_data *cd, VALUE klass));
#endif
static const struct rb_callcache *
vm_search_method_fastpath(VALUE cd_owner, struct rb_call_data *cd, VALUE klass)