summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/gc.c b/gc.c
index 1f6add3f4d..1c923c9336 100644
--- a/gc.c
+++ b/gc.c
@@ -613,18 +613,17 @@ struct heap_page {
int total_slots;
int free_slots;
int final_slots;
-
- struct heap_page *free_next;
- RVALUE *start;
- RVALUE *freelist;
- struct heap_page *next;
-
struct {
unsigned int before_sweep : 1;
unsigned int has_remembered_objects : 1;
unsigned int has_long_lived_shady_objects : 1;
} flags;
+ struct heap_page *free_next;
+ RVALUE *start;
+ RVALUE *freelist;
+ struct heap_page *next;
+
#if USE_RGENGC
bits_t wb_unprotected_bits[HEAP_BITMAP_LIMIT];
#endif