ruby-changes:69159
From: John <ko1@a...>
Date: Thu, 21 Oct 2021 08:21:03 +0900 (JST)
Subject: [ruby-changes:69159] 10f1d808d5 (master): Remove rb_opt_equality_specialized
https://git.ruby-lang.org/ruby.git/commit/?id=10f1d808d5 From 10f1d808d57ac3e8e5c30385b61300d3cc40b0db Mon Sep 17 00:00:00 2001 From: John Hawthorn <john@h...> Date: Fri, 3 Sep 2021 15:25:26 -0700 Subject: Remove rb_opt_equality_specialized --- vm_insnhelper.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/vm_insnhelper.c b/vm_insnhelper.c index 1b1958320d..802305ff01 100644 --- a/vm_insnhelper.c +++ b/vm_insnhelper.c @@ -2039,12 +2039,6 @@ opt_equality_specialized(VALUE recv, VALUE obj) https://github.com/ruby/ruby/blob/trunk/vm_insnhelper.c#L2039 return RBOOL(recv == obj); } -VALUE -rb_opt_equality_specialized(VALUE recv, VALUE obj) -{ - return opt_equality_specialized(recv, obj); -} - static VALUE opt_equality(const rb_iseq_t *cd_owner, VALUE recv, VALUE obj, CALL_DATA cd) { -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/