| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index d3d2d8fdeaa72ecd0f12655e9615f9325f76111f..77e29025d46d4c3d77eb419f791838f43707ec26 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -5505,7 +5505,7 @@ class PolymorphicCodeCacheHashTableKey : public HashTableKey {
|
| for (int i = 0; i < maps_->length(); ++i) {
|
| bool match_found = false;
|
| for (int j = 0; j < other_maps.length(); ++j) {
|
| - if (maps_->at(i)->EquivalentTo(*other_maps.at(j))) {
|
| + if (*(maps_->at(i)) == *(other_maps.at(j))) {
|
| match_found = true;
|
| break;
|
| }
|
|
|