From 04de1d7dfee3423d906b3fdd5429776d38d309c6 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 10 Apr 2014 03:40:32 +0000 Subject: [PATCH] gc.c: do nothing unless USE_RGENGC * gc.c (gc_verify_internal_consistency): always do nothing unless USE_RGENGC is set, no local variable needed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45547 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- gc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gc.c b/gc.c index cf7c830f82..f2cd75f309 100644 --- a/gc.c +++ b/gc.c @@ -4252,21 +4252,21 @@ verify_internal_consistency_i(void *page_start, void *page_end, size_t stride, v static VALUE gc_verify_internal_consistency(VALUE self) { +#if USE_RGENGC struct verify_internal_consistency_struct data; data.objspace = &rb_objspace; data.err_count = 0; -#if USE_RGENGC { struct each_obj_args eo_args; eo_args.callback = verify_internal_consistency_i; eo_args.data = (void *)&data; objspace_each_objects((VALUE)&eo_args); } -#endif if (data.err_count != 0) { rb_bug("gc_verify_internal_consistency: found internal consistency.\n"); } +#endif return Qnil; }