| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 12dd06e6ef1998bdcc7fe24667cd20439a6b1fe8..bd865dd370a1e28e916f7a4d0cefbb7386fd0b7d 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -1009,7 +1009,8 @@ template <class C> inline bool Is(Object* obj);
|
| V(True) \
|
| V(False) \
|
| V(ArgumentsMarker) \
|
| - V(OptimizedOut)
|
| + V(OptimizedOut) \
|
| + V(StaleRegister)
|
|
|
| // The element types selection for CreateListFromArrayLike.
|
| enum class ElementTypes { kAll, kStringAndSymbol };
|
| @@ -9492,6 +9493,7 @@ class Oddball: public HeapObject {
|
| static const byte kOther = 7;
|
| static const byte kException = 8;
|
| static const byte kOptimizedOut = 9;
|
| + static const byte kStaleRegister = 10;
|
|
|
| typedef FixedBodyDescriptor<kToStringOffset, kTypeOfOffset + kPointerSize,
|
| kSize> BodyDescriptor;
|
|
|