ruby-changes:49823
From: shyouhei <ko1@a...>
Date: Fri, 19 Jan 2018 12:20:04 +0900 (JST)
Subject: [ruby-changes:49823] shyouhei:r61941 (trunk): variable succ_index_table never actually used
shyouhei 2018-01-19 12:19:58 +0900 (Fri, 19 Jan 2018) New Revision: 61941 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=61941 Log: variable succ_index_table never actually used Modified files: trunk/iseq.c Index: iseq.c =================================================================== --- iseq.c (revision 61940) +++ iseq.c (revision 61941) @@ -2840,7 +2840,7 @@ struct succ_index_table { https://github.com/ruby/ruby/blob/trunk/iseq.c#L2840 uint64_t small_block_ranks; /* 9 bits * 7 = 63 bits */ uint64_t bits[512/64]; } succ_part[FLEX_ARY_LEN]; -} succ_index_table; +}; #define imm_block_rank_set(v, i, r) (v) |= (uint64_t)(r) << (7 * (i)) #define imm_block_rank_get(v, i) (((int)((v) >> ((i) * 7))) & 0x7f) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/