| Index: src/objects-debug.cc
 | 
| diff --git a/src/objects-debug.cc b/src/objects-debug.cc
 | 
| index 96da68778b52dff9ca1895333707d15fde2503ce..580207c10a234062d591208cc39decc64f32bd2f 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());
 | 
|  }
 | 
| 
 |