Index: src/ic/ic-state.cc |
diff --git a/src/ic/ic-state.cc b/src/ic/ic-state.cc |
index 2de29ad516b8840cc74677856362c2c76993af85..8ab08bc08d2009a42db2323e3bbebb4632c04e49 100644 |
--- a/src/ic/ic-state.cc |
+++ b/src/ic/ic-state.cc |
@@ -223,6 +223,7 @@ Type* BinaryOpICState::GetResultType(Zone* zone) const { |
std::ostream& operator<<(std::ostream& os, const BinaryOpICState& s) { |
os << "(" << Token::Name(s.op_); |
if (s.CouldCreateAllocationMementos()) os << "_CreateAllocationMementos"; |
+ if (is_strong(s.strength())) os << "_Strong"; |
os << ":" << BinaryOpICState::KindToString(s.left_kind_) << "*"; |
if (s.fixed_right_arg_.IsJust()) { |
os << s.fixed_right_arg_.FromJust(); |