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

Unified Diff: src/compiler/type-hints.cc

Issue 2354853002: [turbofan] Lower ConsString creation in JSTypedLowering. (Closed)
Patch Set: Address feedback. Created 4 years, 3 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/compiler/type-hints.h ('k') | test/mjsunit/compiler/string-add-try-catch.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/type-hints.cc
diff --git a/src/compiler/type-hints.cc b/src/compiler/type-hints.cc
index a07a8707b127937fd6e1961c5d8f3bb5b1841d90..32e4486a52b9a859eed81978217384fdd2d553ab 100644
--- a/src/compiler/type-hints.cc
+++ b/src/compiler/type-hints.cc
@@ -18,6 +18,8 @@ std::ostream& operator<<(std::ostream& os, BinaryOperationHint hint) {
return os << "Signed32";
case BinaryOperationHint::kNumberOrOddball:
return os << "NumberOrOddball";
+ case BinaryOperationHint::kString:
+ return os << "String";
case BinaryOperationHint::kAny:
return os << "Any";
}
« no previous file with comments | « src/compiler/type-hints.h ('k') | test/mjsunit/compiler/string-add-try-catch.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698