| Index: src/mips64/lithium-mips64.h
 | 
| diff --git a/src/mips64/lithium-mips64.h b/src/mips64/lithium-mips64.h
 | 
| index afc84efb8f380c25dd158f67596595e25c8cac4a..6eed2c2391e942d0b07ca4286991dd69bf34b4f1 100644
 | 
| --- a/src/mips64/lithium-mips64.h
 | 
| +++ b/src/mips64/lithium-mips64.h
 | 
| @@ -100,7 +100,6 @@ class LCodeGen;
 | 
|    V(LoadRoot)                                \
 | 
|    V(LoadFieldByIndex)                        \
 | 
|    V(LoadFunctionPrototype)                   \
 | 
| -  V(LoadGlobalCell)                          \
 | 
|    V(LoadGlobalGeneric)                       \
 | 
|    V(LoadKeyed)                               \
 | 
|    V(LoadKeyedGeneric)                        \
 | 
| @@ -140,7 +139,6 @@ class LCodeGen;
 | 
|    V(StoreCodeEntry)                          \
 | 
|    V(StoreContextSlot)                        \
 | 
|    V(StoreFrameContext)                       \
 | 
| -  V(StoreGlobalCell)                         \
 | 
|    V(StoreKeyed)                              \
 | 
|    V(StoreKeyedGeneric)                       \
 | 
|    V(StoreNamedField)                         \
 | 
| @@ -1665,13 +1663,6 @@ class LLoadKeyedGeneric FINAL : public LTemplateInstruction<1, 3, 1> {
 | 
|  };
 | 
|  
 | 
|  
 | 
| -class LLoadGlobalCell FINAL : public LTemplateInstruction<1, 0, 0> {
 | 
| - public:
 | 
| -  DECLARE_CONCRETE_INSTRUCTION(LoadGlobalCell, "load-global-cell")
 | 
| -  DECLARE_HYDROGEN_ACCESSOR(LoadGlobalCell)
 | 
| -};
 | 
| -
 | 
| -
 | 
|  class LLoadGlobalGeneric FINAL : public LTemplateInstruction<1, 2, 1> {
 | 
|   public:
 | 
|    LLoadGlobalGeneric(LOperand* context, LOperand* global_object,
 | 
| @@ -1693,21 +1684,6 @@ class LLoadGlobalGeneric FINAL : public LTemplateInstruction<1, 2, 1> {
 | 
|  };
 | 
|  
 | 
|  
 | 
| -class LStoreGlobalCell FINAL : public LTemplateInstruction<0, 1, 1> {
 | 
| - public:
 | 
| -  LStoreGlobalCell(LOperand* value, LOperand* temp) {
 | 
| -    inputs_[0] = value;
 | 
| -    temps_[0] = temp;
 | 
| -  }
 | 
| -
 | 
| -  LOperand* value() { return inputs_[0]; }
 | 
| -  LOperand* temp() { return temps_[0]; }
 | 
| -
 | 
| -  DECLARE_CONCRETE_INSTRUCTION(StoreGlobalCell, "store-global-cell")
 | 
| -  DECLARE_HYDROGEN_ACCESSOR(StoreGlobalCell)
 | 
| -};
 | 
| -
 | 
| -
 | 
|  class LLoadContextSlot FINAL : public LTemplateInstruction<1, 1, 0> {
 | 
|   public:
 | 
|    explicit LLoadContextSlot(LOperand* context) {
 | 
| 
 |