 Chromium Code Reviews
 Chromium Code Reviews Issue 1252333002:
  Don't try to get the mark bits of the one ptr filler object  (Closed) 
  Base URL: https://chromium.googlesource.com/v8/v8.git@master
    
  
    Issue 1252333002:
  Don't try to get the mark bits of the one ptr filler object  (Closed) 
  Base URL: https://chromium.googlesource.com/v8/v8.git@master| Index: src/heap/heap.cc | 
| diff --git a/src/heap/heap.cc b/src/heap/heap.cc | 
| index 073bffcf897ea39ee19f19651f7382920f1def04..0740e02a66ee13332399b3ff6849183f8e8428f2 100644 | 
| --- a/src/heap/heap.cc | 
| +++ b/src/heap/heap.cc | 
| @@ -6211,6 +6211,7 @@ class UnreachableObjectsFilter : public HeapObjectsFilter { | 
| } | 
| bool SkipObject(HeapObject* object) { | 
| + if (object->IsFiller()) return true; | 
| MarkBit mark_bit = Marking::MarkBitFrom(object); | 
| return Marking::IsWhite(mark_bit); | 
| } |