| Index: src/crankshaft/mips/lithium-codegen-mips.cc | 
| diff --git a/src/crankshaft/mips/lithium-codegen-mips.cc b/src/crankshaft/mips/lithium-codegen-mips.cc | 
| index c8e0cd0cc2bcbc30e12fbea72e63f26dac998abf..01aa73c1ef896981b87220022149ee13861e4327 100644 | 
| --- a/src/crankshaft/mips/lithium-codegen-mips.cc | 
| +++ b/src/crankshaft/mips/lithium-codegen-mips.cc | 
| @@ -4998,17 +4998,6 @@ void LCodeGen::DoClampTToUint8(LClampTToUint8* instr) { | 
| } | 
|  | 
|  | 
| -void LCodeGen::DoDoubleBits(LDoubleBits* instr) { | 
| -  DoubleRegister value_reg = ToDoubleRegister(instr->value()); | 
| -  Register result_reg = ToRegister(instr->result()); | 
| -  if (instr->hydrogen()->bits() == HDoubleBits::HIGH) { | 
| -    __ FmoveHigh(result_reg, value_reg); | 
| -  } else { | 
| -    __ FmoveLow(result_reg, value_reg); | 
| -  } | 
| -} | 
| - | 
| - | 
| void LCodeGen::DoAllocate(LAllocate* instr) { | 
| class DeferredAllocate final : public LDeferredCode { | 
| public: | 
|  |