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

ruby-changes:64194

From: Koichi <ko1@a...>
Date: Wed, 16 Dec 2020 10:36:46 +0900 (JST)
Subject: [ruby-changes:64194] 171f0431e7 (master): fix typo

https://git.ruby-lang.org/ruby.git/commit/?id=171f0431e7

From 171f0431e766ba5b1a326386fff34a30f6cbc4c5 Mon Sep 17 00:00:00 2001
From: Koichi Sasada <ko1@a...>
Date: Wed, 16 Dec 2020 10:36:23 +0900
Subject: fix typo


diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index f0f0760..d565b79 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -1725,7 +1725,7 @@ rb_vm_search_method_slowpath(const struct rb_callinfo *ci, VALUE klass) https://github.com/ruby/ruby/blob/trunk/vm_insnhelper.c#L1725
 #endif
 
 static const struct rb_callcache *
-vm_search_method_swlopath0(VALUE cd_owner, struct rb_call_data *cd, VALUE klass)
+vm_search_method_slowpath0(VALUE cd_owner, struct rb_call_data *cd, VALUE klass)
 {
 #if USE_DEBUG_COUNTER
     const struct rb_callcache *old_cc = cd->cc;
@@ -1794,7 +1794,7 @@ vm_search_method_fastpath(VALUE cd_owner, struct rb_call_data *cd, VALUE klass) https://github.com/ruby/ruby/blob/trunk/vm_insnhelper.c#L1794
     }
 #endif
 
-    return vm_search_method_swlopath0(cd_owner, cd, klass);
+    return vm_search_method_slowpath0(cd_owner, cd, klass);
 }
 
 static const struct rb_callcache *
-- 
cgit v0.10.2


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

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