Index: src/objects-debug.cc |
diff --git a/src/objects-debug.cc b/src/objects-debug.cc |
index d2e768f549a92066f472c8da52284cdd4eafa446..cef0b7f4874d8240046d91097c38648d2fdc316a 100644 |
--- a/src/objects-debug.cc |
+++ b/src/objects-debug.cc |
@@ -300,7 +300,7 @@ void JSObject::JSObjectVerify() { |
} |
Object* value = RawFastPropertyAt(index); |
if (r.IsDouble()) DCHECK(value->IsMutableHeapNumber()); |
- if (value->IsUninitialized()) continue; |
+ if (value->IsUninitialized(isolate)) continue; |
if (r.IsSmi()) DCHECK(value->IsSmi()); |
if (r.IsHeapObject()) DCHECK(value->IsHeapObject()); |
FieldType* field_type = descriptors->GetFieldType(i); |
@@ -831,7 +831,7 @@ void JSProxy::JSProxyVerify() { |
CHECK_EQ(target()->IsCallable(), map()->is_callable()); |
CHECK_EQ(target()->IsConstructor(), map()->is_constructor()); |
CHECK(hash()->IsSmi() || hash()->IsUndefined(isolate)); |
- CHECK(map()->prototype()->IsNull()); |
+ CHECK(map()->prototype()->IsNull(isolate)); |
// There should be no properties on a Proxy. |
CHECK_EQ(0, map()->NumberOfOwnDescriptors()); |
} |