summaryrefslogtreecommitdiff
path: root/insnhelper.ci
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-09-26 10:29:00 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-09-26 10:29:00 +0000
commit94331261e94b15fe06df26ec78668480c17537f5 (patch)
treeb308f85fe54d44feac2eb0cc67fcb951bde728ad /insnhelper.ci
parente826eec433728676af1bde2f6dde74a6f7126693 (diff)
* 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
Diffstat (limited to 'insnhelper.ci')
-rw-r--r--insnhelper.ci2
1 files changed, 1 insertions, 1 deletions
diff --git a/insnhelper.ci b/insnhelper.ci
index 7ab7456995..4be9c7259e 100644
--- a/insnhelper.ci
+++ b/insnhelper.ci
@@ -1286,12 +1286,12 @@ vm_throw(rb_thread_t *th, rb_control_frame_t *reg_cfp, rb_num_t throw_state, VAL
break;
}
}
- cfp++;
if (GET_LFP() == cfp->lfp &&
cfp->iseq->type == ISEQ_TYPE_METHOD) {
is_orphan = 0;
break;
}
+ cfp++;
}
if (is_orphan) {