| Index: src/crankshaft/mips/lithium-mips.h | 
| diff --git a/src/crankshaft/mips/lithium-mips.h b/src/crankshaft/mips/lithium-mips.h | 
| index 1c624fce4a9991b930881803956a2f1ecfd0b9eb..f06a8794205e54433a44bf6b8699462f7c636f99 100644 | 
| --- a/src/crankshaft/mips/lithium-mips.h | 
| +++ b/src/crankshaft/mips/lithium-mips.h | 
| @@ -53,7 +53,6 @@ class LCodeGen; | 
| V(ConstantI)                               \ | 
| V(ConstantS)                               \ | 
| V(ConstantT)                               \ | 
| -  V(ConstructDouble)                         \ | 
| V(Context)                                 \ | 
| V(DebugBreak)                              \ | 
| V(DeclareGlobals)                          \ | 
| @@ -2306,20 +2305,6 @@ class LDoubleBits final : public LTemplateInstruction<1, 1, 0> { | 
| }; | 
|  | 
|  | 
| -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, | 
|  |