| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 141db175e97706461bf4d5491c4bd45e8656e4e7..5c607fe349a630919f759171d7060943d75272a6 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -2528,7 +2528,7 @@ class DescriptorArray: public FixedArray {
|
| Object* object = get(kEnumCacheIndex);
|
| if (object->IsSmi()) return false;
|
| FixedArray* bridge = FixedArray::cast(object);
|
| - return bridge->get(kEnumCacheBridgeIndicesCacheIndex)->IsSmi();
|
| + return !bridge->get(kEnumCacheBridgeIndicesCacheIndex)->IsSmi();
|
| }
|
|
|
| FixedArray* GetEnumIndicesCache() {
|
|
|