Chromium Code Reviews| Index: src/heap.cc |
| diff --git a/src/heap.cc b/src/heap.cc |
| index de912884a807df1afba7d27427829fce84d8d81b..5930e259578b6751349f8c77410ad26eaae41ec8 100644 |
| --- a/src/heap.cc |
| +++ b/src/heap.cc |
| @@ -2663,8 +2663,7 @@ MaybeObject* Heap::AllocateTypeFeedbackInfo() { |
| if (!maybe_info->To(&info)) return maybe_info; |
| } |
| info->initialize_storage(); |
| - info->set_type_feedback_cells(TypeFeedbackCells::cast(empty_fixed_array()), |
| - SKIP_WRITE_BARRIER); |
| + info->set_feedback_vector(empty_fixed_array(), SKIP_WRITE_BARRIER); |
| return info; |
| } |