Index: src/objects-printer.cc |
diff --git a/src/objects-printer.cc b/src/objects-printer.cc |
index 52bbcd5aca8d34bc0f9ab48635f93a4b901d22a9..9306de8e169bb428e4a96a21d305b0d6233d1b35 100644 |
--- a/src/objects-printer.cc |
+++ b/src/objects-printer.cc |
@@ -750,6 +750,16 @@ void TypeFeedbackVector::TypeFeedbackVectorPrint(std::ostream& os) { // NOLINT |
os << Code::ICState2String(nexus.StateFromFeedback()); |
break; |
} |
+ case FeedbackVectorSlotKind::INTERPRETER_BINARYOP_IC: { |
+ BinaryOpICNexus nexus(this, slot); |
+ os << Code::ICState2String(nexus.StateFromFeedback()); |
+ break; |
+ } |
+ case FeedbackVectorSlotKind::INTERPRETER_COMPARE_IC: { |
+ CompareICNexus nexus(this, slot); |
+ os << Code::ICState2String(nexus.StateFromFeedback()); |
+ break; |
+ } |
case FeedbackVectorSlotKind::GENERAL: |
break; |
case FeedbackVectorSlotKind::INVALID: |