[前][次][番号順一覧][スレッド一覧]

ruby-changes:64333

From: Nobuyoshi <ko1@a...>
Date: Sat, 19 Dec 2020 18:18:46 +0900 (JST)
Subject: [ruby-changes:64333] 8148f88b92 (master): ALWAYS_INLINE implies inline

https://git.ruby-lang.org/ruby.git/commit/?id=8148f88b92

From 8148f88b92a6b8d850b991afe74fb0d0f9c11887 Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <nobu@r...>
Date: Sat, 19 Dec 2020 18:04:47 +0900
Subject: ALWAYS_INLINE implies inline


diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index 73d90e6..6c7ff59 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) https://github.com/ruby/ruby/blob/trunk/vm_insnhelper.c#L1796
 }
 
 #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)
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]