summaryrefslogtreecommitdiff
path: root/iseq.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-08 12:50:13 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-08 12:50:13 +0000
commit034414741e4616f7a305f12fe36e1f9a6b0ff074 (patch)
treed81c2169540d10c05b13fc8f75da37c4ee1b55f1 /iseq.c
parent4fb9d7ffeeb71dd5d09288b9bd24de2925c0bb89 (diff)
* iseq.c (iseq_mark): use preprocessor.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24791 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c6
1 files changed, 4 insertions, 2 deletions
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) {