| Index: src/crankshaft/s390/lithium-s390.h
 | 
| diff --git a/src/crankshaft/s390/lithium-s390.h b/src/crankshaft/s390/lithium-s390.h
 | 
| index 37b2cf4576d7a96390818d2faab93578be54bf58..cd5bacb04a7b45ce5e13d9fa29d34e573633d510 100644
 | 
| --- a/src/crankshaft/s390/lithium-s390.h
 | 
| +++ b/src/crankshaft/s390/lithium-s390.h
 | 
| @@ -53,7 +53,6 @@ class LCodeGen;
 | 
|    V(ConstantI)                               \
 | 
|    V(ConstantS)                               \
 | 
|    V(ConstantT)                               \
 | 
| -  V(ConstructDouble)                         \
 | 
|    V(Context)                                 \
 | 
|    V(DebugBreak)                              \
 | 
|    V(DeclareGlobals)                          \
 | 
| @@ -2128,19 +2127,6 @@ class LDoubleBits final : public LTemplateInstruction<1, 1, 0> {
 | 
|    DECLARE_HYDROGEN_ACCESSOR(DoubleBits)
 | 
|  };
 | 
|  
 | 
| -class LConstructDouble final : public LTemplateInstruction<1, 2, 0> {
 | 
| - public:
 | 
| -  LConstructDouble(LOperand* hi, LOperand* lo) {
 | 
| -    inputs_[0] = hi;
 | 
| -    inputs_[1] = lo;
 | 
| -  }
 | 
| -
 | 
| -  LOperand* hi() { return inputs_[0]; }
 | 
| -  LOperand* lo() { return inputs_[1]; }
 | 
| -
 | 
| -  DECLARE_CONCRETE_INSTRUCTION(ConstructDouble, "construct-double")
 | 
| -};
 | 
| -
 | 
|  class LAllocate final : public LTemplateInstruction<1, 2, 2> {
 | 
|   public:
 | 
|    LAllocate(LOperand* context, LOperand* size, LOperand* temp1,
 | 
| 
 |