summaryrefslogtreecommitdiff
path: root/iseq.c
diff options
context:
space:
mode:
author0x005c <52650857+0x005c@users.noreply.github.com>2020-01-08 20:40:08 +0900
committerSamuel Williams <samuel.williams@oriontransfer.co.nz>2020-01-23 00:11:03 +1300
commit461db352c22c0ffb5c0db295238f97f44168e6cc (patch)
tree9aca5ef263c3373c57ca4232dc82ddde05947303 /iseq.c
parentc90fc55a1f4630aae862e2d409c933edea3a5d5d (diff)
Rename RUBY_MARK_NO_PIN_UNLESS_NULL to RUBY_MARK_MOVABLE_UNLESS_NULL
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2823
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iseq.c b/iseq.c
index 2f40efc77b..a294f08527 100644
--- a/iseq.c
+++ b/iseq.c
@@ -314,7 +314,7 @@ rb_iseq_mark(const rb_iseq_t *iseq)
rb_gc_mark_movable(body->location.label);
rb_gc_mark_movable(body->location.base_label);
rb_gc_mark_movable(body->location.pathobj);
- RUBY_MARK_NO_PIN_UNLESS_NULL((VALUE)body->parent_iseq);
+ RUBY_MARK_MOVABLE_UNLESS_NULL((VALUE)body->parent_iseq);
if (body->param.flags.has_kw && ISEQ_COMPILE_DATA(iseq) == NULL) {
const struct rb_iseq_param_keyword *const keyword = body->param.keyword;