Index: src/objects-inl.h |
diff --git a/src/objects-inl.h b/src/objects-inl.h |
index 7c7f0940067ad7500c80d1ed416f38c818e7f192..1abe9a5c760f4ea52c7d1551e28ea2f9820231b9 100644 |
--- a/src/objects-inl.h |
+++ b/src/objects-inl.h |
@@ -1219,7 +1219,7 @@ void JSObject::ValidateSmiOnlyElements() { |
map != heap->free_space_map()) { |
for (int i = 0; i < fixed_array->length(); i++) { |
Object* current = fixed_array->get(i); |
- ASSERT(current->IsSmi() || current == heap->the_hole_value()); |
+ ASSERT(current->IsSmi() || current-IsTheHole()); |
Vyacheslav Egorov (Chromium)
2011/12/29 15:54:48
current->IsHole()
danno
2011/12/30 14:12:02
Done.
|
} |
} |
} |