Index: src/runtime/runtime.cc |
diff --git a/src/runtime/runtime.cc b/src/runtime/runtime.cc |
index 776239aa4283233e04cb85576f7bc53c598a9ede..d23ac93ac61abb2740cbaa00b852728d1f5a330b 100644 |
--- a/src/runtime/runtime.cc |
+++ b/src/runtime/runtime.cc |
@@ -56,7 +56,8 @@ void Runtime::InitializeIntrinsicFunctionNames(Isolate* isolate, |
if (name == NULL) continue; |
Handle<NameDictionary> new_dict = NameDictionary::Add( |
dict, isolate->factory()->InternalizeUtf8String(name), |
- Handle<Smi>(Smi::FromInt(i), isolate), PropertyDetails(NONE, DATA, 0)); |
+ Handle<Smi>(Smi::FromInt(i), isolate), |
+ PropertyDetails(NONE, DATA, 0, PropertyCellType::kInvalid)); |
// The dictionary does not need to grow. |
CHECK(new_dict.is_identical_to(dict)); |
} |