Index: src/typing.cc |
diff --git a/src/typing.cc b/src/typing.cc |
index ec0196e8c0c2fbc129b32b33c830d398c129a227..0a7ba618390a8df4852be5b1f6da35832f6bb740 100644 |
--- a/src/typing.cc |
+++ b/src/typing.cc |
@@ -532,8 +532,8 @@ void AstTyper::VisitCall(Call* expr) { |
// Collect type feedback. |
RECURSE(Visit(expr->expression())); |
bool is_uninitialized = true; |
- if (expr->IsUsingCallFeedbackSlot(isolate())) { |
- FeedbackVectorICSlot slot = expr->CallFeedbackSlot(); |
+ if (expr->IsUsingCallFeedbackICSlot(isolate())) { |
+ FeedbackVectorICSlot slot = expr->CallFeedbackICSlot(); |
is_uninitialized = oracle()->CallIsUninitialized(slot); |
if (!expr->expression()->IsProperty() && |
oracle()->CallIsMonomorphic(slot)) { |