| 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 e058876442519d597d4db05d1edc2ec7e59ef3fa..75032e1915c59bbe202b7873e8b648bdf5a5cfaf 100644
|
| --- a/src/ic/mips/handler-compiler-mips.cc
|
| +++ b/src/ic/mips/handler-compiler-mips.cc
|
| @@ -701,7 +701,8 @@ Handle<Code> NamedLoadHandlerCompiler::CompileLoadGlobal(
|
|
|
| // Get the value from the cell.
|
| Register result = StoreDescriptor::ValueRegister();
|
| - __ li(result, Operand(cell));
|
| + Handle<WeakCell> weak_cell = factory()->NewWeakCell(cell);
|
| + __ LoadWeakValue(result, weak_cell, &miss);
|
| __ lw(result, FieldMemOperand(result, Cell::kValueOffset));
|
|
|
| // Check for deleted property if property can actually be deleted.
|
|
|