Index: src/type-info.cc |
diff --git a/src/type-info.cc b/src/type-info.cc |
index 0dd23b08d6c1a42aec46419766a613e91a59a85b..ec5567890cc2128c849e60df112c5ad9e1ce52d6 100644 |
--- a/src/type-info.cc |
+++ b/src/type-info.cc |
@@ -445,8 +445,7 @@ void TypeFeedbackOracle::CreateDictionary(Handle<Code> code, |
ZoneList<RelocInfo>* infos) { |
AllowHeapAllocation allocation_allowed; |
Code* old_code = *code; |
- dictionary_ = |
- isolate()->factory()->NewUnseededNumberDictionary(infos->length()); |
+ dictionary_ = UnseededNumberDictionary::New(isolate(), infos->length()); |
RelocateRelocInfos(infos, old_code, *code); |
} |