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

Unified Diff: src/code-stubs.cc

Issue 491143003: Minor-key-ify CallICStub and CallIC_ArrayStub. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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
Index: src/code-stubs.cc
diff --git a/src/code-stubs.cc b/src/code-stubs.cc
index 1c5c7a23e985fe5e26b77143eca21e454a14f61d..ccf44e0c8811a962360491a3533f3181fac2ff45 100644
--- a/src/code-stubs.cc
+++ b/src/code-stubs.cc
@@ -554,12 +554,12 @@ Type* CompareNilICStub::GetInputType(Zone* zone, Handle<Map> map) {
void CallIC_ArrayStub::PrintState(OStream& os) const { // NOLINT
- os << state_ << " (Array)";
+ os << state() << " (Array)";
}
void CallICStub::PrintState(OStream& os) const { // NOLINT
- os << state_;
+ os << state();
}
« src/code-stubs.h ('K') | « src/code-stubs.h ('k') | src/ia32/code-stubs-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698