Index: src/mark-compact.h |
=================================================================== |
--- src/mark-compact.h (revision 15695) |
+++ src/mark-compact.h (working copy) |
@@ -958,12 +958,12 @@ |
: chunk_(chunk) { |
last_cell_index_ = Bitmap::IndexToCell( |
Bitmap::CellAlignIndex( |
- chunk->AddressToMarkbitIndex(chunk->area_end()))); |
- cell_base_ = chunk->area_start(); |
+ chunk_->AddressToMarkbitIndex(chunk_->area_end()))); |
+ cell_base_ = chunk_->area_start(); |
cell_index_ = Bitmap::IndexToCell( |
Bitmap::CellAlignIndex( |
- chunk->AddressToMarkbitIndex(cell_base_))); |
- cells_ = chunk->markbits()->cells(); |
+ chunk_->AddressToMarkbitIndex(cell_base_))); |
+ cells_ = chunk_->markbits()->cells(); |
} |
inline bool Done() { return cell_index_ == last_cell_index_; } |