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

Unified Diff: src/js/v8natives.js

Issue 1605483002: Remove premature crankshaft optimization of HasInPrototypeChain. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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 | « src/crankshaft/hydrogen.cc ('k') | test/mjsunit/regress/regress-578775.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/js/v8natives.js
diff --git a/src/js/v8natives.js b/src/js/v8natives.js
index 278ae9b57ed9ba0038063535bc4ee2be4084ad65..26447dac5de4d8169c891b105c8897b49aa78af9 100644
--- a/src/js/v8natives.js
+++ b/src/js/v8natives.js
@@ -148,7 +148,7 @@ function ObjectHasOwnProperty(value) {
function ObjectIsPrototypeOf(V) {
if (!IS_RECEIVER(V)) return false;
var O = TO_OBJECT(this);
- return %_HasInPrototypeChain(V, O);
+ return %HasInPrototypeChain(V, O);
}
« no previous file with comments | « src/crankshaft/hydrogen.cc ('k') | test/mjsunit/regress/regress-578775.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698