From ce71cfaa42d56f805112170ec41fe37a63933d66 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 9 Sep 2014 02:59:08 +0000 Subject: [PATCH] * gc.c (rb_objspace_t::profile): reduce padding. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47462 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- gc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gc.c b/gc.c index 3c1c15e3b1..d98241bcc1 100644 --- a/gc.c +++ b/gc.c @@ -509,6 +509,7 @@ typedef struct rb_objspace { mark_stack_t mark_stack; struct { int run; + int latest_gc_info; gc_profile_record *records; gc_profile_record *current_record; size_t next_index; @@ -550,7 +551,6 @@ typedef struct rb_objspace { size_t count; size_t total_allocated_object_num; size_t total_freed_object_num; - int latest_gc_info; } profile; struct gc_list *global_list; rb_event_flag_t hook_events; /* this place may be affinity with memory cache */