Index: src/objects-debug.cc |
diff --git a/src/objects-debug.cc b/src/objects-debug.cc |
index a2395de3d468a24d78d8caee7842cdf43c5052d7..1d5af5b9e706c3984373a4def4194f33cb3ee647 100644 |
--- a/src/objects-debug.cc |
+++ b/src/objects-debug.cc |
@@ -547,7 +547,7 @@ void JSGlobalProxy::JSGlobalProxyVerify() { |
VerifyObjectField(JSGlobalProxy::kNativeContextOffset); |
// Make sure that this object has no properties, elements. |
CHECK_EQ(0, properties()->length()); |
- CHECK(HasFastSmiElements()); |
+ CHECK_EQ(FAST_HOLEY_SMI_ELEMENTS, GetElementsKind()); |
CHECK_EQ(0, FixedArray::cast(elements())->length()); |
} |