Index: src/heap/store-buffer.cc |
diff --git a/src/heap/store-buffer.cc b/src/heap/store-buffer.cc |
index ab642e371ccf3ba2f1497988473c40740d2e8bdb..8a4a4b8cbc961179d92b8016ecd040b8fdd6f6be 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, |