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

Unified Diff: src/utils.cc

Issue 1370303004: Distinction between FeedbackVectorICSlot and FeedbackVectorSlot eliminated. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixed release builds Created 5 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/utils.h ('k') | src/x64/lithium-codegen-x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/utils.cc
diff --git a/src/utils.cc b/src/utils.cc
index bbfdc74ad204760f95f1cbb2b3e7560bc736af5d..4077ae7217a427e626b813aa88e31226ff1c001b 100644
--- a/src/utils.cc
+++ b/src/utils.cc
@@ -77,6 +77,11 @@ char* SimpleStringBuilder::Finalize() {
}
+std::ostream& operator<<(std::ostream& os, FeedbackVectorSlot slot) {
+ return os << "#" << slot.id_;
+}
+
+
size_t hash_value(BailoutId id) {
base::hash<int> h;
return h(id.id_);
« no previous file with comments | « src/utils.h ('k') | src/x64/lithium-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698