| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index 36d0b6c15c5be65ccea2b5d09a3894308288fc50..84e5b2f48aa12b90776edbb518f9724ea17f6672 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -4182,17 +4182,6 @@ BuiltinFunctionId SharedFunctionInfo::builtin_function_id() {
|
| }
|
|
|
|
|
| -int SharedFunctionInfo::code_age() {
|
| - return (compiler_hints() >> kCodeAgeShift) & kCodeAgeMask;
|
| -}
|
| -
|
| -
|
| -void SharedFunctionInfo::set_code_age(int code_age) {
|
| - int hints = compiler_hints() & ~(kCodeAgeMask << kCodeAgeShift);
|
| - set_compiler_hints(hints | ((code_age & kCodeAgeMask) << kCodeAgeShift));
|
| -}
|
| -
|
| -
|
| int SharedFunctionInfo::ic_age() {
|
| return ICAgeBits::decode(counters());
|
| }
|
|
|