Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(859)

Unified Diff: src/objects.cc

Issue 1631673002: Also check new_target_is_base() bit when comparing two maps for equivalence. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Skip new test for ignition Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | test/mjsunit/mjsunit.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index bdf9a6c0f301a91f8abde905d738e49d2dba7ac7..f41283962f02e272a53c83db97babe357b62eae4 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -12232,6 +12232,7 @@ bool CheckEquivalent(Map* first, Map* second) {
first->bit_field() == second->bit_field() &&
first->is_extensible() == second->is_extensible() &&
first->is_strong() == second->is_strong() &&
+ first->new_target_is_base() == second->new_target_is_base() &&
first->is_hidden_prototype() == second->is_hidden_prototype();
}
« no previous file with comments | « no previous file | test/mjsunit/mjsunit.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698