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

Unified Diff: src/ic/ic.cc

Issue 2045013005: [ic] always print short for of keys with --trace-print (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebasing Created 4 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic/ic.cc
diff --git a/src/ic/ic.cc b/src/ic/ic.cc
index bafaffff7eaf5cf7392eb5cf3b19d93e46f8d592..820a4af2cfc29702f38ebce724310231b0917d3a 100644
--- a/src/ic/ic.cc
+++ b/src/ic/ic.cc
@@ -132,12 +132,7 @@ void IC::TraceIC(const char* type, Handle<Object> name, State old_state,
}
PrintF(" (%c->%c%s) map=%p ", TransitionMarkFromState(old_state),
TransitionMarkFromState(new_state), modifier, map);
-#ifdef OBJECT_PRINT
- OFStream os(stdout);
- name->Print(os);
-#else
name->ShortPrint(stdout);
-#endif
PrintF("]\n");
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698