aboutsummaryrefslogtreecommitdiffstats
path: root/vm_insnhelper.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-10 23:42:01 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-10 23:42:01 +0000
commitaee4d60b055c41255c3457a0ef7d67277fb86ac5 (patch)
tree8c91f908870749c1bf6c53786745126142a58e06 /vm_insnhelper.c
parent6fcc74aec18693f669adcb2d9f90b73ac383701e (diff)
downloadruby-aee4d60b055c41255c3457a0ef7d67277fb86ac5.tar.gz
* vm.c: use VM_ASSERT instead of assert().
* vm_args.c: ditto. * vm_insnhelper.c: ditto. * vm_method.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50822 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_insnhelper.c')
-rw-r--r--vm_insnhelper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index 926f342e4c..76f5bbe42a 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -841,7 +841,7 @@ vm_throw_start(rb_thread_t * const th, rb_control_frame_t * const reg_cfp, int s
ep = VM_EP_PREV_EP(ep);
base_iseq = base_iseq->parent_iseq;
escape_cfp = rb_vm_search_cf_from_ep(th, escape_cfp, ep);
- assert(escape_cfp->iseq == base_iseq);
+ VM_ASSERT(escape_cfp->iseq == base_iseq);
}
}