From 711a069e0f1ac767f82db7985a4c63bfb98e561e Mon Sep 17 00:00:00 2001 From: ktsj Date: Sun, 10 Nov 2013 14:50:13 +0000 Subject: * gc.c (rb_gcdebug_print_obj_condition): catch up recent changes to compile on GC_DEBUG. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43637 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- gc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gc.c') diff --git a/gc.c b/gc.c index 620f750a31..7bdfa5f78f 100644 --- a/gc.c +++ b/gc.c @@ -6706,7 +6706,7 @@ rb_gcdebug_print_obj_condition(VALUE obj) #if RGENGC_THREEGEN fprintf(stderr, "young? : %s\n", RVALUE_YOUNG_P(obj) ? "true" : "false"); #endif - fprintf(stderr, "old? : %s\n", RVALUE_OLDGEN_P(obj) ? "true" : "false"); + fprintf(stderr, "old? : %s\n", RVALUE_OLD_P(obj) ? "true" : "false"); fprintf(stderr, "shady? : %s\n", RVALUE_SHADY(obj) ? "true" : "false"); fprintf(stderr, "remembered?: %s\n", MARKED_IN_BITMAP(GET_HEAP_REMEMBERSET_BITS(obj), obj) ? "true" : "false"); #endif -- cgit v1.2.3