From 269b795556d1befc13fc2e44e3a1dd5ec2fb7950 Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 8 Jun 2017 05:22:49 +0000 Subject: vm_block_handler_verify() should not return any value. * vm_core.h (vm_block_handler_verify): this function only checks the given block handler with VM_ASSERT(). No need to return any value. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59045 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval_intern.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eval_intern.h') diff --git a/eval_intern.h b/eval_intern.h index ed6ec47ae6..399faf3f90 100644 --- a/eval_intern.h +++ b/eval_intern.h @@ -7,7 +7,7 @@ static inline void vm_passed_block_handler_set(rb_thread_t *th, VALUE block_handler) { - VM_ASSERT(vm_block_handler_verify(block_handler)); + vm_block_handler_verify(block_handler); th->passed_block_handler = block_handler; } @@ -15,7 +15,7 @@ static inline void pass_passed_block_handler(rb_thread_t *th) { VALUE block_handler = rb_vm_frame_block_handler(th->ec.cfp); - VM_ASSERT(vm_block_handler_verify(block_handler)); + vm_block_handler_verify(block_handler); vm_passed_block_handler_set(th, block_handler); VM_ENV_FLAGS_SET(th->ec.cfp->ep, VM_FRAME_FLAG_PASSED); } -- cgit v1.2.1