| Index: src/prettyprinter.cc
|
| diff --git a/src/prettyprinter.cc b/src/prettyprinter.cc
|
| index c9de739357101efeb5988967eeda0125ce474f53..282057d739c10bc3c474c9812908cf051b51ea32 100644
|
| --- a/src/prettyprinter.cc
|
| +++ b/src/prettyprinter.cc
|
| @@ -434,7 +434,8 @@ static int FormatICSlotNode(Vector<char>* buf, Expression* node,
|
| const char* node_name, FeedbackVectorICSlot slot) {
|
| int pos = SNPrintF(*buf, "%s", node_name);
|
| if (!slot.IsInvalid()) {
|
| - const char* str = Code::Kind2String(node->FeedbackICSlotKind(0));
|
| + const char* str =
|
| + TypeFeedbackVector::Kind2String(node->FeedbackICSlotKind(0));
|
| pos = SNPrintF(*buf + pos, " ICSlot(%d, %s)", slot.ToInt(), str);
|
| }
|
| return pos;
|
|
|