ruby-changes:51478
From: ko1 <ko1@a...>
Date: Mon, 18 Jun 2018 17:30:08 +0900 (JST)
Subject: [ruby-changes:51478] ko1:r63688 (trunk): remvoe assertion because rubyspec hit this assert
ko1 2018-06-18 17:30:03 +0900 (Mon, 18 Jun 2018) New Revision: 63688 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=63688 Log: remvoe assertion because rubyspec hit this assert Modified files: trunk/vm_insnhelper.h Index: vm_insnhelper.h =================================================================== --- vm_insnhelper.h (revision 63687) +++ vm_insnhelper.h (revision 63688) @@ -47,7 +47,7 @@ rb_obj_hidden_p(VALUE obj) https://github.com/ruby/ruby/blob/trunk/vm_insnhelper.h#L47 } } -#define PUSH(x) (VM_ASSERT(!rb_obj_hidden_p(x)), SET_SV(x), INC_SP(1)) +#define PUSH(x) (SET_SV(x), INC_SP(1)) #define TOPN(n) (*(GET_SP()-(n)-1)) #define POPN(n) (DEC_SP(n)) #define POP() (DEC_SP(1)) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/