Index: src/factory.cc |
diff --git a/src/factory.cc b/src/factory.cc |
index e5bdc298f51e5ddcc9dd06263d72b25f1562e33d..11afad45693cee917a62724c8819fc1e3e4ad0ef 100644 |
--- a/src/factory.cc |
+++ b/src/factory.cc |
@@ -1601,7 +1601,7 @@ Handle<GlobalObject> Factory::NewGlobalObject(Handle<JSFunction> constructor) { |
// Make sure we don't have a ton of pre-allocated slots in the |
// global objects. They will be unused once we normalize the object. |
DCHECK(map->unused_property_fields() == 0); |
- DCHECK(map->inobject_properties() == 0); |
+ DCHECK(map->GetInObjectProperties() == 0); |
// Initial size of the backing store to avoid resize of the storage during |
// bootstrapping. The size differs between the JS global object ad the |