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

Unified Diff: src/interpreter/interpreter.cc

Issue 2511243004: Revert of [interpreter] Properly collect rhs feedback for comparisons with oddballs. (Closed)
Patch Set: Created 4 years, 1 month 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/interpreter/interpreter.cc
diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc
index 10d063b601ee248427455634bc5bfa322f7aaee4..125c5d817c98a36a1c5be56f980ec9aed23791e4 100644
--- a/src/interpreter/interpreter.cc
+++ b/src/interpreter/interpreter.cc
@@ -1081,10 +1081,9 @@
__ Word32Equal(rhs_instance_type, __ Int32Constant(ODDBALL_TYPE));
__ GotoUnless(rhs_is_oddball, &rhs_is_not_oddball);
- var_type_feedback.Bind(__ Word32Or(
- var_type_feedback.value(),
- __ Int32Constant(CompareOperationFeedback::kNumberOrOddball)));
- __ Goto(&update_feedback);
+ var_type_feedback.Bind(
+ __ Int32Constant(CompareOperationFeedback::kNumberOrOddball));
+ __ Goto(&do_compare);
__ Bind(&rhs_is_not_oddball);
{
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698