| Index: src/heap/store-buffer.cc
|
| diff --git a/src/heap/store-buffer.cc b/src/heap/store-buffer.cc
|
| index ab642e371ccf3ba2f1497988473c40740d2e8bdb..278e9f2f6ee11a6835d93e6b942e26ab5e16b98d 100644
|
| --- a/src/heap/store-buffer.cc
|
| +++ b/src/heap/store-buffer.cc
|
| @@ -507,7 +507,7 @@ void StoreBuffer::IteratePointersToNewSpace(ObjectSlotCallback slot_callback,
|
| for (HeapObject* heap_object = iterator.Next(); heap_object != NULL;
|
| heap_object = iterator.Next()) {
|
| // We iterate over objects that contain new space pointers only.
|
| - if (heap_object->MayContainNewSpacePointers()) {
|
| + if (!heap_object->MayContainRawValues()) {
|
| FindPointersToNewSpaceInRegion(
|
| heap_object->address() + HeapObject::kHeaderSize,
|
| heap_object->address() + heap_object->Size(), slot_callback,
|
|
|