From 034414741e4616f7a305f12fe36e1f9a6b0ff074 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 8 Sep 2009 12:50:13 +0000 Subject: * iseq.c (iseq_mark): use preprocessor. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24791 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- iseq.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'iseq.c') diff --git a/iseq.c b/iseq.c index b348925567..6d8b9e191c 100644 --- a/iseq.c +++ b/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) { -- cgit v1.2.3