| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 337cb3f33f1a43081d2fbc4cceb09d8a4a9ba93f..416bde213e0b079cb1ecba0cbbf5a80856a6a713 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -6260,10 +6260,10 @@ class Map: public HeapObject {
|
| static const int kDescriptorsOffset =
|
| kTransitionsOrPrototypeInfoOffset + kPointerSize;
|
| #if V8_DOUBLE_FIELDS_UNBOXING
|
| - static const int kLayoutDecriptorOffset = kDescriptorsOffset + kPointerSize;
|
| - static const int kCodeCacheOffset = kLayoutDecriptorOffset + kPointerSize;
|
| + static const int kLayoutDescriptorOffset = kDescriptorsOffset + kPointerSize;
|
| + static const int kCodeCacheOffset = kLayoutDescriptorOffset + kPointerSize;
|
| #else
|
| - static const int kLayoutDecriptorOffset = 1; // Must not be ever accessed.
|
| + static const int kLayoutDescriptorOffset = 1; // Must not be ever accessed.
|
| static const int kCodeCacheOffset = kDescriptorsOffset + kPointerSize;
|
| #endif
|
| static const int kDependentCodeOffset = kCodeCacheOffset + kPointerSize;
|
|
|