Index: src/runtime.cc |
diff --git a/src/runtime.cc b/src/runtime.cc |
index 34423515e1e788ebe3abc77582d759a60b796831..acb48115611b2bff1d5edf9737b229f3e214e6bd 100644 |
--- a/src/runtime.cc |
+++ b/src/runtime.cc |
@@ -8471,7 +8471,7 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_ClearFunctionTypeFeedback) { |
Code* unoptimized = function->shared()->code(); |
if (unoptimized->kind() == Code::FUNCTION) { |
unoptimized->ClearInlineCaches(); |
- unoptimized->ClearTypeFeedbackCells(isolate->heap()); |
+ unoptimized->ClearTypeFeedbackInfo(isolate->heap()); |
} |
return isolate->heap()->undefined_value(); |
} |