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

ruby-changes:72118

From: Eileen <ko1@a...>
Date: Fri, 10 Jun 2022 23:13:11 +0900 (JST)
Subject: [ruby-changes:72118] c54f4264c2 (master): Remove duplicated rb_yjit_get_stats (#5997)

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

From c54f4264c281b2392a540042f894bb85c240007b Mon Sep 17 00:00:00 2001
From: "Eileen M. Uchitelle" <eileencodes@u...>
Date: Fri, 10 Jun 2022 10:12:58 -0400
Subject: Remove duplicated rb_yjit_get_stats (#5997)

`rb_yjit_get_stats` is defined twice in yjit.c, it only needs to be
defined once.
---
 yjit.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/yjit.c b/yjit.c
index b4e36e0b68..5dde402f41 100644
--- a/yjit.c
+++ b/yjit.c
@@ -955,7 +955,6 @@ VALUE rb_yjit_reset_stats_bang(rb_execution_context_t *ec, VALUE self); https://github.com/ruby/ruby/blob/trunk/yjit.c#L955
 VALUE rb_yjit_disasm_iseq(rb_execution_context_t *ec, VALUE self, VALUE iseq);
 VALUE rb_yjit_insns_compiled(rb_execution_context_t *ec, VALUE self, VALUE iseq);
 VALUE rb_yjit_simulate_oom_bang(rb_execution_context_t *ec, VALUE self);
-VALUE rb_yjit_get_stats(rb_execution_context_t *ec, VALUE self);
 VALUE rb_yjit_get_exit_locations(rb_execution_context_t *ec, VALUE self);
 
 // Preprocessed yjit.rb generated during build
-- 
cgit v1.2.1


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

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