| Index: src/crankshaft/mips/lithium-mips.h
 | 
| diff --git a/src/crankshaft/mips/lithium-mips.h b/src/crankshaft/mips/lithium-mips.h
 | 
| index 8c92739437514263b1a6aac046fe8b1d9491da4f..e0a002ced01cbdac10d6bcb9c015245d65281645 100644
 | 
| --- a/src/crankshaft/mips/lithium-mips.h
 | 
| +++ b/src/crankshaft/mips/lithium-mips.h
 | 
| @@ -33,7 +33,6 @@ class LCodeGen;
 | 
|    V(CallJSFunction)                          \
 | 
|    V(CallWithDescriptor)                      \
 | 
|    V(CallFunction)                            \
 | 
| -  V(CallNew)                                 \
 | 
|    V(CallNewArray)                            \
 | 
|    V(CallRuntime)                             \
 | 
|    V(CallStub)                                \
 | 
| @@ -1856,25 +1855,6 @@ class LCallFunction final : public LTemplateInstruction<1, 2, 2> {
 | 
|  };
 | 
|  
 | 
|  
 | 
| -class LCallNew final : public LTemplateInstruction<1, 2, 0> {
 | 
| - public:
 | 
| -  LCallNew(LOperand* context, LOperand* constructor) {
 | 
| -    inputs_[0] = context;
 | 
| -    inputs_[1] = constructor;
 | 
| -  }
 | 
| -
 | 
| -  LOperand* context() { return inputs_[0]; }
 | 
| -  LOperand* constructor() { return inputs_[1]; }
 | 
| -
 | 
| -  DECLARE_CONCRETE_INSTRUCTION(CallNew, "call-new")
 | 
| -  DECLARE_HYDROGEN_ACCESSOR(CallNew)
 | 
| -
 | 
| -  void PrintDataTo(StringStream* stream) override;
 | 
| -
 | 
| -  int arity() const { return hydrogen()->argument_count() - 1; }
 | 
| -};
 | 
| -
 | 
| -
 | 
|  class LCallNewArray final : public LTemplateInstruction<1, 2, 0> {
 | 
|   public:
 | 
|    LCallNewArray(LOperand* context, LOperand* constructor) {
 | 
| 
 |