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

Unified Diff: src/type-hints.cc

Issue 2923543003: [turbofan] Properly support Number feedback for binary operators. (Closed)
Patch Set: Improve DCHECK. Created 3 years, 6 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/type-hints.h ('k') | test/mjsunit/compiler/deopt-numberoroddball-binop.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/type-hints.cc
diff --git a/src/type-hints.cc b/src/type-hints.cc
index 233d03e48e2f9f8880f04126976f8f8c479a2abd..e48c8bdb21cbbf3e605f305d02fcf99f61d9aa7b 100644
--- a/src/type-hints.cc
+++ b/src/type-hints.cc
@@ -15,6 +15,8 @@ std::ostream& operator<<(std::ostream& os, BinaryOperationHint hint) {
return os << "SignedSmall";
case BinaryOperationHint::kSigned32:
return os << "Signed32";
+ case BinaryOperationHint::kNumber:
+ return os << "Number";
case BinaryOperationHint::kNumberOrOddball:
return os << "NumberOrOddball";
case BinaryOperationHint::kString:
« no previous file with comments | « src/type-hints.h ('k') | test/mjsunit/compiler/deopt-numberoroddball-binop.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698