aboutsummaryrefslogtreecommitdiffstats
path: root/insns.def
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-27 05:30:05 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-27 05:30:05 +0000
commit1c6fa1ec2371ad454d7772a96ef2f1fc6eacdcde (patch)
tree4a8404778a4eb146189ea1448119dbadd281a269 /insns.def
parent31ab9a64039e0a338980ab095eacd9947833edcc (diff)
downloadruby-1c6fa1ec2371ad454d7772a96ef2f1fc6eacdcde.tar.gz
vm_defined() accepts `ec` instead of `th`.
* vm_insnhelper.c (vm_defined): accepts `ec` instead of `th`. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60473 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 df30e55d6e..3044ccd71f 100644
--- a/insns.def
+++ b/insns.def
@@ -740,7 +740,7 @@ defined
(VALUE v)
(VALUE val)
{
- val = vm_defined(th, GET_CFP(), op_type, obj, needstr, v);
+ val = vm_defined(th->ec, GET_CFP(), op_type, obj, needstr, v);
}
/**