Index: src/factory.cc |
diff --git a/src/factory.cc b/src/factory.cc |
index e4c106e8c250512dad82896f2b1f2ccaa9a2dbea..a796f2a8ac9e488a391051d6de32a5a2eca5d6ae 100644 |
--- a/src/factory.cc |
+++ b/src/factory.cc |
@@ -1889,7 +1889,7 @@ void Factory::BecomeJSFunction(Handle<JSProxy> proxy) { |
Handle<TypeFeedbackVector> Factory::NewTypeFeedbackVector(int slot_count) { |
// Ensure we can skip the write barrier |
DCHECK_EQ(isolate()->heap()->uninitialized_symbol(), |
- *TypeFeedbackInfo::UninitializedSentinel(isolate())); |
+ *TypeFeedbackVector::UninitializedSentinel(isolate())); |
if (slot_count == 0) { |
return Handle<TypeFeedbackVector>::cast(empty_fixed_array()); |
@@ -1898,7 +1898,7 @@ Handle<TypeFeedbackVector> Factory::NewTypeFeedbackVector(int slot_count) { |
CALL_HEAP_FUNCTION(isolate(), |
isolate()->heap()->AllocateFixedArrayWithFiller( |
slot_count, TENURED, |
- *TypeFeedbackInfo::UninitializedSentinel(isolate())), |
+ *TypeFeedbackVector::UninitializedSentinel(isolate())), |
TypeFeedbackVector); |
} |