Index: src/ic/mips/handler-compiler-mips.cc |
diff --git a/src/ic/mips/handler-compiler-mips.cc b/src/ic/mips/handler-compiler-mips.cc |
index 73709557eaaeb5c6beeac40cfdfc031e673f49cf..febfbeb84524b87d9ee6839c9eb84d68a3287e3c 100644 |
--- a/src/ic/mips/handler-compiler-mips.cc |
+++ b/src/ic/mips/handler-compiler-mips.cc |
@@ -193,11 +193,11 @@ void NamedLoadHandlerCompiler::GenerateLoadFunctionPrototype( |
void PropertyHandlerCompiler::GenerateCheckPropertyCell( |
MacroAssembler* masm, Handle<JSGlobalObject> global, Handle<Name> name, |
Register scratch, Label* miss) { |
- Handle<Cell> cell = JSGlobalObject::EnsurePropertyCell(global, name); |
+ Handle<PropertyCell> cell = JSGlobalObject::EnsurePropertyCell(global, name); |
DCHECK(cell->value()->IsTheHole()); |
Handle<WeakCell> weak_cell = masm->isolate()->factory()->NewWeakCell(cell); |
__ LoadWeakValue(scratch, weak_cell, miss); |
- __ lw(scratch, FieldMemOperand(scratch, Cell::kValueOffset)); |
+ __ lw(scratch, FieldMemOperand(scratch, PropertyCell::kValueOffset)); |
__ LoadRoot(at, Heap::kTheHoleValueRootIndex); |
__ Branch(miss, ne, scratch, Operand(at)); |
} |