| Index: src/heap/heap.cc
|
| diff --git a/src/heap/heap.cc b/src/heap/heap.cc
|
| index 49b1e0330b932fd056f2cab72e3590941f6c4176..1d048d904e0ea619d57e4ee70677610f72185794 100644
|
| --- a/src/heap/heap.cc
|
| +++ b/src/heap/heap.cc
|
| @@ -3438,7 +3438,7 @@ void Heap::InitializeJSObjectFromMap(JSObject* obj, FixedArray* properties,
|
| if (constructor->IsJSFunction() &&
|
| JSFunction::cast(constructor)->IsInobjectSlackTrackingInProgress()) {
|
| // We might want to shrink the object later.
|
| - DCHECK(obj->GetInternalFieldCount() == 0);
|
| + DCHECK_EQ(0, obj->GetInternalFieldCount());
|
| filler = Heap::one_pointer_filler_map();
|
| } else {
|
| filler = Heap::undefined_value();
|
|
|