Index: src/heap/spaces.h |
diff --git a/src/heap/spaces.h b/src/heap/spaces.h |
index 339a13164440378b96ecc31bec0dc143d4752680..6d0c84279d2b327162c22df31fea6ee605c260f9 100644 |
--- a/src/heap/spaces.h |
+++ b/src/heap/spaces.h |
@@ -2691,10 +2691,6 @@ class NewSpace : public Space { |
// Set the age mark in the active semispace. |
void set_age_mark(Address mark) { to_space_.set_age_mark(mark); } |
- // The start address of the space and a bit mask. Anding an address in the |
- // new space with the mask will result in the start address. |
- Address start() { return start_; } |
- |
// The allocation top and limit address. |
Address* allocation_top_address() { return allocation_info_.top_address(); } |
@@ -2818,9 +2814,6 @@ class NewSpace : public Space { |
base::VirtualMemory reservation_; |
int pages_used_; |
- // Start address and bit mask for containment testing. |
- Address start_; |
- |
// Allocation pointer and limit for normal allocation and allocation during |
// mark-compact collection. |
AllocationInfo allocation_info_; |