From 1ed327977d72745c7e189603441fc4d32ab221e1 Mon Sep 17 00:00:00 2001 From: cbruni Date: Thu, 9 Jun 2016 05:35:44 -0700 Subject: [PATCH] [--trace-ic] always print short form of keys BUG= NOTRY=Y Review-Url: https://codereview.chromium.org/2045013005 Cr-Commit-Position: refs/heads/master@{#36858} --- src/ic/ic.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/ic/ic.cc b/src/ic/ic.cc index bafaffff7e..820a4af2cf 100644 --- a/src/ic/ic.cc +++ b/src/ic/ic.cc @@ -132,12 +132,7 @@ void IC::TraceIC(const char* type, Handle 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"); } }