Index: src/mips/assembler-mips-inl.h |
diff --git a/src/mips/assembler-mips-inl.h b/src/mips/assembler-mips-inl.h |
index d922bfac6619b32a3011c0868e549d4ffaa923e1..7e0ee666dcc98d99d42406bc7b0257a1e836156b 100644 |
--- a/src/mips/assembler-mips-inl.h |
+++ b/src/mips/assembler-mips-inl.h |
@@ -232,24 +232,23 @@ void RelocInfo::set_target_runtime_entry(Address target, |
} |
-Handle<JSGlobalPropertyCell> RelocInfo::target_cell_handle() { |
+Handle<PropertyCell> 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<PropertyCell>(reinterpret_cast<PropertyCell**>(address)); |
} |
-JSGlobalPropertyCell* RelocInfo::target_cell() { |
+PropertyCell* RelocInfo::target_cell() { |
ASSERT(rmode_ == RelocInfo::GLOBAL_PROPERTY_CELL); |
- return JSGlobalPropertyCell::FromValueAddress(Memory::Address_at(pc_)); |
+ return PropertyCell::FromValueAddress(Memory::Address_at(pc_)); |
} |
-void RelocInfo::set_target_cell(JSGlobalPropertyCell* cell, |
+void RelocInfo::set_target_cell(PropertyCell* cell, |
WriteBarrierMode mode) { |
ASSERT(rmode_ == RelocInfo::GLOBAL_PROPERTY_CELL); |
- Address address = cell->address() + JSGlobalPropertyCell::kValueOffset; |
+ Address address = cell->address() + PropertyCell::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 |