| Index: src/objects-debug.cc
 | 
| diff --git a/src/objects-debug.cc b/src/objects-debug.cc
 | 
| index 3b561ee8fc3908e3756c0c7179af35621038962d..ca42383cbd41f9f9f6eaf59f575d8ed9eb11f94f 100644
 | 
| --- a/src/objects-debug.cc
 | 
| +++ b/src/objects-debug.cc
 | 
| @@ -167,7 +167,7 @@ void HeapObject::HeapObjectVerify() {
 | 
|        Cell::cast(this)->CellVerify();
 | 
|        break;
 | 
|      case PROPERTY_CELL_TYPE:
 | 
| -      JSGlobalPropertyCell::cast(this)->JSGlobalPropertyCellVerify();
 | 
| +      PropertyCell::cast(this)->PropertyCellVerify();
 | 
|        break;
 | 
|      case JS_ARRAY_TYPE:
 | 
|        JSArray::cast(this)->JSArrayVerify();
 | 
| @@ -624,8 +624,8 @@ void Cell::CellVerify() {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -void JSGlobalPropertyCell::JSGlobalPropertyCellVerify() {
 | 
| -  CHECK(IsJSGlobalPropertyCell());
 | 
| +void PropertyCell::PropertyCellVerify() {
 | 
| +  CHECK(IsPropertyCell());
 | 
|    VerifyObjectField(kValueOffset);
 | 
|    VerifyObjectField(kTypeOffset);
 | 
|  }
 | 
| 
 |