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

ruby-changes:69153

From: John <ko1@a...>
Date: Thu, 21 Oct 2021 08:21:01 +0900 (JST)
Subject: [ruby-changes:69153] 5e37f280d1 (master): Remove vm_opt_aset

https://git.ruby-lang.org/ruby.git/commit/?id=5e37f280d1

From 5e37f280d1628152b7bb3e72b009504a20226031 Mon Sep 17 00:00:00 2001
From: John Hawthorn <john@h...>
Date: Tue, 14 Sep 2021 12:31:08 -0700
Subject: Remove vm_opt_aset

---
 vm_insnhelper.c | 6 ------
 yjit_codegen.c  | 2 --
 2 files changed, 8 deletions(-)

diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index 0b15794210..6c2458f32e 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -5227,12 +5227,6 @@ vm_opt_aset(VALUE recv, VALUE obj, VALUE set) https://github.com/ruby/ruby/blob/trunk/vm_insnhelper.c#L5227
     }
 }
 
-VALUE
-rb_vm_opt_aset(VALUE recv, VALUE obj, VALUE set)
-{
-    return vm_opt_aset(recv, obj, set);
-}
-
 static VALUE
 vm_opt_aref_with(VALUE recv, VALUE key)
 {
diff --git a/yjit_codegen.c b/yjit_codegen.c
index 2c71fd8043..a3000c30df 100644
--- a/yjit_codegen.c
+++ b/yjit_codegen.c
@@ -2176,8 +2176,6 @@ gen_opt_aref(jitstate_t *jit, ctx_t *ctx) https://github.com/ruby/ruby/blob/trunk/yjit_codegen.c#L2176
     }
 }
 
-VALUE rb_vm_opt_aset(VALUE recv, VALUE obj, VALUE set);
-
 static codegen_status_t
 gen_opt_aset(jitstate_t *jit, ctx_t *ctx)
 {
-- 
cgit v1.2.1


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

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