aboutsummaryrefslogtreecommitdiffstats
path: root/insns.def
diff options
context:
space:
mode:
authorAaron Patterson <tenderlove@ruby-lang.org>2021-03-16 15:16:51 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2021-03-17 10:55:37 -0700
commitc3971bea3351e014171910402a220770196ed1cc (patch)
tree6ff17f2d8df25162eb1f73ec3236286f2b3a756d /insns.def
parent17bf478de14d0dd9098df65282f7f419cd792599 (diff)
downloadruby-c3971bea3351e014171910402a220770196ed1cc.tar.gz
Stop calling `rb_iseq_defined_string` in vm_defined
We already have access to the string from the iseqs, so we can stop calling this function.
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 55564c4792..ca56416d23 100644
--- a/insns.def
+++ b/insns.def
@@ -667,7 +667,7 @@ defined
(VALUE val)
// attr bool leaf = leafness_of_defined(op_type);
{
- if (vm_defined(ec, GET_CFP(), op_type, obj, Qfalse, v)) {
+ if (vm_defined(ec, GET_CFP(), op_type, obj, v)) {
val = needstr;
}
else {