| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 831e0135018a291b06ccd61d17808a74e0e31a2d..48ae5749da8fa801db3051ee4c57ed503795eee2 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -8403,9 +8403,6 @@ class PolymorphicCodeCache: public Struct {
|
| Code::Flags flags,
|
| Handle<Code> code);
|
|
|
| - MUST_USE_RESULT MaybeObject* Update(MapHandleList* maps,
|
| - Code::Flags flags,
|
| - Code* code);
|
|
|
| // Returns an undefined value if the entry is not found.
|
| Handle<Object> Lookup(MapHandleList* maps, Code::Flags flags);
|
| @@ -8431,9 +8428,11 @@ class PolymorphicCodeCacheHashTable
|
| public:
|
| Object* Lookup(MapHandleList* maps, int code_kind);
|
|
|
| - MUST_USE_RESULT MaybeObject* Put(MapHandleList* maps,
|
| - int code_kind,
|
| - Code* code);
|
| + static Handle<PolymorphicCodeCacheHashTable> Put(
|
| + Handle<PolymorphicCodeCacheHashTable> hash_table,
|
| + MapHandleList* maps,
|
| + int code_kind,
|
| + Handle<Code> code);
|
|
|
| static inline PolymorphicCodeCacheHashTable* cast(Object* obj);
|
|
|
|
|