| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index b49efaa1feb9eb6eb18d01870813954a9c919434..ba0c2123567017cffe6668531044918e729173f6 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -5051,11 +5051,6 @@ class Code: public HeapObject {
|
| // it is only used by the garbage collector itself.
|
| DECL_ACCESSORS(gc_metadata, Object)
|
|
|
| - // [ic_age]: Inline caching age: the value of the Heap::global_ic_age
|
| - // at the moment when this object was created.
|
| - inline void set_ic_age(int count);
|
| - inline int ic_age() const;
|
| -
|
| // [prologue_offset]: Offset of the function prologue, used for aging
|
| // FUNCTIONs and OPTIMIZED_FUNCTIONs.
|
| inline int prologue_offset() const;
|
| @@ -5412,8 +5407,7 @@ class Code: public HeapObject {
|
| static const int kNextCodeLinkOffset = kTypeFeedbackInfoOffset + kPointerSize;
|
| static const int kGCMetadataOffset = kNextCodeLinkOffset + kPointerSize;
|
| static const int kInstructionSizeOffset = kGCMetadataOffset + kPointerSize;
|
| - static const int kICAgeOffset = kInstructionSizeOffset + kIntSize;
|
| - static const int kFlagsOffset = kICAgeOffset + kIntSize;
|
| + static const int kFlagsOffset = kInstructionSizeOffset + kIntSize;
|
| static const int kKindSpecificFlags1Offset = kFlagsOffset + kIntSize;
|
| static const int kKindSpecificFlags2Offset =
|
| kKindSpecificFlags1Offset + kIntSize;
|
|
|