| Index: src/crankshaft/s390/lithium-s390.h
 | 
| diff --git a/src/crankshaft/s390/lithium-s390.h b/src/crankshaft/s390/lithium-s390.h
 | 
| index 834c3231b1424d5ecd51ff2fb52aaf095321254b..fd8b1324bdf7fe3fb686cbec0e17dfbc55ea3a21 100644
 | 
| --- a/src/crankshaft/s390/lithium-s390.h
 | 
| +++ b/src/crankshaft/s390/lithium-s390.h
 | 
| @@ -131,7 +131,6 @@ class LCodeGen;
 | 
|    V(StackCheck)                              \
 | 
|    V(StoreCodeEntry)                          \
 | 
|    V(StoreContextSlot)                        \
 | 
| -  V(StoreFrameContext)                       \
 | 
|    V(StoreKeyed)                              \
 | 
|    V(StoreKeyedGeneric)                       \
 | 
|    V(StoreNamedField)                         \
 | 
| @@ -2264,15 +2263,6 @@ class LLoadFieldByIndex final : public LTemplateInstruction<1, 2, 0> {
 | 
|    DECLARE_CONCRETE_INSTRUCTION(LoadFieldByIndex, "load-field-by-index")
 | 
|  };
 | 
|  
 | 
| -class LStoreFrameContext : public LTemplateInstruction<0, 1, 0> {
 | 
| - public:
 | 
| -  explicit LStoreFrameContext(LOperand* context) { inputs_[0] = context; }
 | 
| -
 | 
| -  LOperand* context() { return inputs_[0]; }
 | 
| -
 | 
| -  DECLARE_CONCRETE_INSTRUCTION(StoreFrameContext, "store-frame-context")
 | 
| -};
 | 
| -
 | 
|  class LChunkBuilder;
 | 
|  class LPlatformChunk final : public LChunk {
 | 
|   public:
 | 
| 
 |