| Index: src/heap/spaces-inl.h | 
| diff --git a/src/heap/spaces-inl.h b/src/heap/spaces-inl.h | 
| index dbf3ffff2aae74fcfe3b4db10fb77b65e49f36b3..1ee0f0bf910d095386ec79b4519645a8a4f274aa 100644 | 
| --- a/src/heap/spaces-inl.h | 
| +++ b/src/heap/spaces-inl.h | 
| @@ -34,21 +34,6 @@ NewSpacePageRange::NewSpacePageRange(Address start, Address limit) | 
| SemiSpace::AssertValidRange(start, limit); | 
| } | 
|  | 
| -// ----------------------------------------------------------------------------- | 
| -// Bitmap | 
| - | 
| -void Bitmap::Clear(MemoryChunk* chunk) { | 
| -  Bitmap* bitmap = chunk->markbits(); | 
| -  for (int i = 0; i < bitmap->CellsCount(); i++) bitmap->cells()[i] = 0; | 
| -  chunk->ResetLiveBytes(); | 
| -} | 
| - | 
| -void Bitmap::SetAllBits(MemoryChunk* chunk) { | 
| -  Bitmap* bitmap = chunk->markbits(); | 
| -  for (int i = 0; i < bitmap->CellsCount(); i++) | 
| -    bitmap->cells()[i] = 0xffffffff; | 
| -} | 
| - | 
|  | 
| // ----------------------------------------------------------------------------- | 
| // SemiSpaceIterator | 
|  |