ruby-changes:49785
From: nobu <ko1@a...>
Date: Thu, 18 Jan 2018 16:53:33 +0900 (JST)
Subject: [ruby-changes:49785] nobu:r61903 (trunk): eval_intern.h: duplicate check
nobu 2018-01-18 16:53:26 +0900 (Thu, 18 Jan 2018) New Revision: 61903 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=61903 Log: eval_intern.h: duplicate check * eval_intern.h (pass_passed_block_handler): remove duplicate check. vm_block_handler_verify() is called in the successive function call. Modified files: trunk/eval_intern.h Index: eval_intern.h =================================================================== --- eval_intern.h (revision 61902) +++ eval_intern.h (revision 61903) @@ -15,7 +15,6 @@ static inline void https://github.com/ruby/ruby/blob/trunk/eval_intern.h#L15 pass_passed_block_handler(rb_execution_context_t *ec) { VALUE block_handler = rb_vm_frame_block_handler(ec->cfp); - vm_block_handler_verify(block_handler); vm_passed_block_handler_set(ec, block_handler); VM_ENV_FLAGS_SET(ec->cfp->ep, VM_FRAME_FLAG_PASSED); } -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/