| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index 78062a772b1daf2bb1321ffbe4a6dd46c2ae669c..c53bdf5b1aba5c68904562ca03b93553582e6d5e 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -12140,12 +12140,6 @@ void String::PrintOn(FILE* file) {
|
| }
|
|
|
|
|
| -inline static uint32_t ObjectAddressForHashing(Object* object) {
|
| - uint32_t value = static_cast<uint32_t>(reinterpret_cast<uintptr_t>(object));
|
| - return value & MemoryChunk::kAlignmentMask;
|
| -}
|
| -
|
| -
|
| int Map::Hash() {
|
| // For performance reasons we only hash the 3 most variable fields of a map:
|
| // constructor, prototype and bit_field2. For predictability reasons we
|
|
|