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

Unified Diff: src/ic/ic-state.cc

Issue 2412453005: [stubs] Refactor the CallICStub to pass the number of arguments. (Closed)
Patch Set: Created 4 years, 2 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/ic/ic-state.h ('k') | src/interface-descriptors.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic/ic-state.cc
diff --git a/src/ic/ic-state.cc b/src/ic/ic-state.cc
index ea1f16c824f91abf0ab91a59aaa373c30d9438a6..9251f5546112ed437870510035ffa672b002fba2 100644
--- a/src/ic/ic-state.cc
+++ b/src/ic/ic-state.cc
@@ -17,7 +17,7 @@ void ICUtility::Clear(Isolate* isolate, Address address,
std::ostream& operator<<(std::ostream& os, const CallICState& s) {
- return os << "(args(" << s.argc() << "), " << s.convert_mode() << ", ";
+ return os << "(" << s.convert_mode() << ", " << s.tail_call_mode() << ")";
}
« no previous file with comments | « src/ic/ic-state.h ('k') | src/interface-descriptors.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698