| Index: src/arm/assembler-arm-inl.h
 | 
| diff --git a/src/arm/assembler-arm-inl.h b/src/arm/assembler-arm-inl.h
 | 
| index 1e0d5c1f7dd4a43a24a7e23d243fb4631c58706b..e191ae530ce2c672843f470919998a0c435901f6 100644
 | 
| --- a/src/arm/assembler-arm-inl.h
 | 
| +++ b/src/arm/assembler-arm-inl.h
 | 
| @@ -179,24 +179,22 @@ void RelocInfo::set_target_runtime_entry(Address target,
 | 
|  }
 | 
|  
 | 
|  
 | 
| -Handle<JSGlobalPropertyCell> RelocInfo::target_cell_handle() {
 | 
| +Handle<Cell> RelocInfo::target_cell_handle() {
 | 
|    ASSERT(rmode_ == RelocInfo::GLOBAL_PROPERTY_CELL);
 | 
|    Address address = Memory::Address_at(pc_);
 | 
| -  return Handle<JSGlobalPropertyCell>(
 | 
| -      reinterpret_cast<JSGlobalPropertyCell**>(address));
 | 
| +  return Handle<Cell>(reinterpret_cast<Cell**>(address));
 | 
|  }
 | 
|  
 | 
|  
 | 
| -JSGlobalPropertyCell* RelocInfo::target_cell() {
 | 
| +Cell* RelocInfo::target_cell() {
 | 
|    ASSERT(rmode_ == RelocInfo::GLOBAL_PROPERTY_CELL);
 | 
| -  return JSGlobalPropertyCell::FromValueAddress(Memory::Address_at(pc_));
 | 
| +  return Cell::FromValueAddress(Memory::Address_at(pc_));
 | 
|  }
 | 
|  
 | 
|  
 | 
| -void RelocInfo::set_target_cell(JSGlobalPropertyCell* cell,
 | 
| -                                WriteBarrierMode mode) {
 | 
| +void RelocInfo::set_target_cell(Cell* cell, WriteBarrierMode mode) {
 | 
|    ASSERT(rmode_ == RelocInfo::GLOBAL_PROPERTY_CELL);
 | 
| -  Address address = cell->address() + JSGlobalPropertyCell::kValueOffset;
 | 
| +  Address address = cell->address() + Cell::kValueOffset;
 | 
|    Memory::Address_at(pc_) = address;
 | 
|    if (mode == UPDATE_WRITE_BARRIER && host() != NULL) {
 | 
|      // TODO(1550) We are passing NULL as a slot because cell can never be on
 | 
| 
 |