From 7bbe9d419536fc54f7fae081139c554a0922df39 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 27 Nov 2018 01:25:16 +0000 Subject: [PATCH] ALWAYS_INLINE implies inline always git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66013 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vm.c b/vm.c index e18465047e..e86f4650f0 100644 --- a/vm.c +++ b/vm.c @@ -1051,7 +1051,7 @@ invoke_bmethod(rb_execution_context_t *ec, const rb_iseq_t *iseq, VALUE self, co return ret; } -ALWAYS_INLINE(static inline VALUE +ALWAYS_INLINE(static VALUE invoke_iseq_block_from_c(rb_execution_context_t *ec, const struct rb_captured_block *captured, VALUE self, int argc, const VALUE *argv, VALUE passed_block_handler, const rb_cref_t *cref, int is_lambda, const rb_callable_method_entry_t *me)); @@ -1163,7 +1163,7 @@ vm_yield_force_blockarg(rb_execution_context_t *ec, VALUE args) VM_BLOCK_HANDLER_NONE, NULL, FALSE, TRUE); } -ALWAYS_INLINE(static inline VALUE +ALWAYS_INLINE(static VALUE invoke_block_from_c_proc(rb_execution_context_t *ec, const rb_proc_t *proc, VALUE self, int argc, const VALUE *argv, VALUE passed_block_handler, int is_lambda,