| Index: src/crankshaft/hydrogen-instructions.h
 | 
| diff --git a/src/crankshaft/hydrogen-instructions.h b/src/crankshaft/hydrogen-instructions.h
 | 
| index 0537caae00ad9fcf6e82e9ea7d65b060b95a1f56..196a14fc705533c86e6cbf1ccf1ae10941606ee4 100644
 | 
| --- a/src/crankshaft/hydrogen-instructions.h
 | 
| +++ b/src/crankshaft/hydrogen-instructions.h
 | 
| @@ -132,7 +132,6 @@ class LChunkBuilder;
 | 
|    V(StackCheck)                               \
 | 
|    V(StoreCodeEntry)                           \
 | 
|    V(StoreContextSlot)                         \
 | 
| -  V(StoreFrameContext)                        \
 | 
|    V(StoreKeyed)                               \
 | 
|    V(StoreKeyedGeneric)                        \
 | 
|    V(StoreNamedField)                          \
 | 
| @@ -7243,28 +7242,6 @@ class HLoadFieldByIndex final : public HTemplateInstruction<2> {
 | 
|    bool IsDeletable() const override { return true; }
 | 
|  };
 | 
|  
 | 
| -
 | 
| -class HStoreFrameContext: public HUnaryOperation {
 | 
| - public:
 | 
| -  DECLARE_INSTRUCTION_FACTORY_P1(HStoreFrameContext, HValue*);
 | 
| -
 | 
| -  HValue* context() { return OperandAt(0); }
 | 
| -
 | 
| -  Representation RequiredInputRepresentation(int index) override {
 | 
| -    return Representation::Tagged();
 | 
| -  }
 | 
| -
 | 
| -  DECLARE_CONCRETE_INSTRUCTION(StoreFrameContext)
 | 
| - private:
 | 
| -  explicit HStoreFrameContext(HValue* context)
 | 
| -      : HUnaryOperation(context) {
 | 
| -    set_representation(Representation::Tagged());
 | 
| -    SetChangesFlag(kContextSlots);
 | 
| -  }
 | 
| -};
 | 
| -
 | 
| -
 | 
| -
 | 
|  #undef DECLARE_INSTRUCTION
 | 
|  #undef DECLARE_CONCRETE_INSTRUCTION
 | 
|  
 | 
| 
 |