summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorKoichi Sasada <ko1@atdot.net>2023-03-10 00:34:38 +0900
committerKoichi Sasada <ko1@atdot.net>2023-03-10 00:37:11 +0900
commit262254dc7dd9b503ca01ab701eb5cdd96bce4c4d (patch)
tree35e91b5be422f033740a81f8a969f70f95f9cd71 /compile.c
parent22d8e95ffe60f9a1267f362bc919c99f03affcae (diff)
downloadruby-262254dc7dd9b503ca01ab701eb5cdd96bce4c4d.tar.gz
rename `defined_ivar` to `definedivar`
because non-opt instructions should contain `_` char.
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compile.c b/compile.c
index f4bb2c9107..7a6f324601 100644
--- a/compile.c
+++ b/compile.c
@@ -5460,7 +5460,7 @@ defined_expr0(rb_iseq_t *iseq, LINK_ANCHOR *const ret,
#define PUSH_VAL(type) (needstr == Qfalse ? Qtrue : rb_iseq_defined_string(type))
case NODE_IVAR:
- ADD_INSN3(ret, line_node, defined_ivar,
+ ADD_INSN3(ret, line_node, definedivar,
ID2SYM(node->nd_vid), get_ivar_ic_value(iseq,node->nd_vid), PUSH_VAL(DEFINED_IVAR));
return;