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

Unified Diff: src/compiler/operator.cc

Issue 2093013002: [turbolizer] Show a label with a shorter parameter for some opcodes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Merge with master Created 4 years, 5 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/operator.h ('k') | src/compiler/simplified-operator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/operator.cc
diff --git a/src/compiler/operator.cc b/src/compiler/operator.cc
index ae10348422cf3eeb71525c0e637225864e9fa52e..4d761fe9f4502859d1c740a72f016ffd51b80f74 100644
--- a/src/compiler/operator.cc
+++ b/src/compiler/operator.cc
@@ -44,8 +44,9 @@ std::ostream& operator<<(std::ostream& os, const Operator& op) {
return os;
}
-
-void Operator::PrintTo(std::ostream& os) const { os << mnemonic(); }
+void Operator::PrintToImpl(std::ostream& os, PrintVerbosity verbose) const {
+ os << mnemonic();
+}
} // namespace compiler
} // namespace internal
« no previous file with comments | « src/compiler/operator.h ('k') | src/compiler/simplified-operator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698