| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index 3ce3bdbd4999c52a46fd48aa9156cec92676ce16..5a09819f7ae6abc28a9b2a6320630a8c9c2be129 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -7575,7 +7575,7 @@ void JSReceiver::initialize_properties() {
|
|
|
|
|
| bool JSReceiver::HasFastProperties() {
|
| - DCHECK(properties()->IsDictionary() == map()->is_dictionary_map());
|
| + DCHECK_EQ(properties()->IsDictionary(), map()->is_dictionary_map());
|
| return !properties()->IsDictionary();
|
| }
|
|
|
|
|