aboutsummaryrefslogtreecommitdiffstats
path: root/insns.def
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-26 10:55:24 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-26 10:55:24 +0000
commit254962d256bbb1893e8463c4af3291221bcc484b (patch)
tree8fc08f2bc61f9b4ac4997e390c4cac1e3be86775 /insns.def
parentc2eee0aab3ab0961031fa23dbac24c5966421b5c (diff)
downloadruby-254962d256bbb1893e8463c4af3291221bcc484b.tar.gz
vm_pop_frame() accepts `ec` instead of `th`.
* vm_insnhelper.c (vm_pop_frame): accepts `ec` instead of `th`. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60448 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'insns.def')
-rw-r--r--insns.def2
1 files changed, 1 insertions, 1 deletions
diff --git a/insns.def b/insns.def
index 766870af53..c4dbebce14 100644
--- a/insns.def
+++ b/insns.def
@@ -996,7 +996,7 @@ leave
RUBY_VM_CHECK_INTS(th);
- if (vm_pop_frame(th, GET_CFP(), GET_EP())) {
+ if (vm_pop_frame(th->ec, GET_CFP(), GET_EP())) {
#if OPT_CALL_THREADED_CODE
th->retval = val;
return 0;