* insnhelper.ci (vm_throw): fix to move increment point.
[ruby-dev:31840] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13520 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e826eec433
commit
94331261e9
@ -1,3 +1,8 @@
|
|||||||
|
Wed Sep 26 19:27:11 2007 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
|
* insnhelper.ci (vm_throw): fix to move increment point.
|
||||||
|
[ruby-dev:31840]
|
||||||
|
|
||||||
Wed Sep 26 19:23:56 2007 Koichi Sasada <ko1@atdot.net>
|
Wed Sep 26 19:23:56 2007 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
* cont.c: Fiber as SemiCoroutine on default. [ruby-core:12146]
|
* cont.c: Fiber as SemiCoroutine on default. [ruby-core:12146]
|
||||||
|
@ -1286,12 +1286,12 @@ vm_throw(rb_thread_t *th, rb_control_frame_t *reg_cfp, rb_num_t throw_state, VAL
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
cfp++;
|
|
||||||
if (GET_LFP() == cfp->lfp &&
|
if (GET_LFP() == cfp->lfp &&
|
||||||
cfp->iseq->type == ISEQ_TYPE_METHOD) {
|
cfp->iseq->type == ISEQ_TYPE_METHOD) {
|
||||||
is_orphan = 0;
|
is_orphan = 0;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
cfp++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_orphan) {
|
if (is_orphan) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user