| Index: src/mark-compact.cc
|
| ===================================================================
|
| --- src/mark-compact.cc (revision 9979)
|
| +++ src/mark-compact.cc (working copy)
|
| @@ -1742,7 +1742,7 @@
|
| int trailing_zeros = CompilerIntrinsics::CountTrailingZeros(grey_objects);
|
| grey_objects >>= trailing_zeros;
|
| offset += trailing_zeros;
|
| - MarkBit markbit(&cells[cell_index], 1 << offset, false);
|
| + MarkBit markbit(&cells[cell_index], 1 << offset);
|
| ASSERT(Marking::IsGrey(markbit));
|
| Marking::GreyToBlack(markbit);
|
| Address addr = cell_base + offset * kPointerSize;
|
|
|