mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* iseq.c (iseq_mark): use preprocessor.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24791 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4fb9d7ffee
commit
034414741e
1 changed files with 4 additions and 2 deletions
6
iseq.c
6
iseq.c
|
@ -99,8 +99,10 @@ iseq_mark(void *ptr)
|
|||
RUBY_MARK_UNLESS_NULL((VALUE)iseq->cref_stack);
|
||||
RUBY_MARK_UNLESS_NULL(iseq->klass);
|
||||
RUBY_MARK_UNLESS_NULL(iseq->coverage);
|
||||
/* RUBY_MARK_UNLESS_NULL((VALUE)iseq->node); */
|
||||
/* RUBY_MARK_UNLESS_NULL(iseq->cached_special_block); */
|
||||
#if 0
|
||||
RUBY_MARK_UNLESS_NULL((VALUE)iseq->node);
|
||||
RUBY_MARK_UNLESS_NULL(iseq->cached_special_block);
|
||||
#endif
|
||||
RUBY_MARK_UNLESS_NULL(iseq->orig);
|
||||
|
||||
if (iseq->compile_data != 0) {
|
||||
|
|
Loading…
Reference in a new issue