| Index: src/spaces.h
|
| diff --git a/src/spaces.h b/src/spaces.h
|
| index c72fa7f82c5987c7f77e5cd3d21947f9a7ef8dd1..31f5b5ac9bccf97c56cb638fd7026027678b76e8 100644
|
| --- a/src/spaces.h
|
| +++ b/src/spaces.h
|
| @@ -389,6 +389,7 @@ class MemoryChunk {
|
| SCAN_ON_SCAVENGE,
|
| IN_FROM_SPACE, // Mutually exclusive with IN_TO_SPACE.
|
| IN_TO_SPACE, // All pages in new space has one of these two set.
|
| + NEW_SPACE_BELOW_AGE_MARK,
|
| NUM_MEMORY_CHUNK_FLAGS
|
| };
|
|
|
| @@ -1642,7 +1643,7 @@ class SemiSpace : public Space {
|
|
|
| // Age mark accessors.
|
| Address age_mark() { return age_mark_; }
|
| - void set_age_mark(Address mark) { age_mark_ = mark; }
|
| + void set_age_mark(Address mark);
|
|
|
| // If we don't have these here then SemiSpace will be abstract. However
|
| // they should never be called.
|
|
|