| Index: src/crankshaft/arm/lithium-arm.h
 | 
| diff --git a/src/crankshaft/arm/lithium-arm.h b/src/crankshaft/arm/lithium-arm.h
 | 
| index 589b4fbb0f65f0a03e7007dc254fd8f4b4428c72..103e12a919c91964af2813d875e79f33bb1acb4c 100644
 | 
| --- a/src/crankshaft/arm/lithium-arm.h
 | 
| +++ b/src/crankshaft/arm/lithium-arm.h
 | 
| @@ -29,7 +29,6 @@ class LCodeGen;
 | 
|    V(BitI)                                    \
 | 
|    V(BoundsCheck)                             \
 | 
|    V(Branch)                                  \
 | 
| -  V(CallJSFunction)                          \
 | 
|    V(CallWithDescriptor)                      \
 | 
|    V(CallNewArray)                            \
 | 
|    V(CallRuntime)                             \
 | 
| @@ -1720,23 +1719,6 @@ class LDeclareGlobals final : public LTemplateInstruction<0, 1, 0> {
 | 
|  };
 | 
|  
 | 
|  
 | 
| -class LCallJSFunction final : public LTemplateInstruction<1, 1, 0> {
 | 
| - public:
 | 
| -  explicit LCallJSFunction(LOperand* function) {
 | 
| -    inputs_[0] = function;
 | 
| -  }
 | 
| -
 | 
| -  LOperand* function() { return inputs_[0]; }
 | 
| -
 | 
| -  DECLARE_CONCRETE_INSTRUCTION(CallJSFunction, "call-js-function")
 | 
| -  DECLARE_HYDROGEN_ACCESSOR(CallJSFunction)
 | 
| -
 | 
| -  void PrintDataTo(StringStream* stream) override;
 | 
| -
 | 
| -  int arity() const { return hydrogen()->argument_count() - 1; }
 | 
| -};
 | 
| -
 | 
| -
 | 
|  class LCallWithDescriptor final : public LTemplateResultInstruction<1> {
 | 
|   public:
 | 
|    LCallWithDescriptor(CallInterfaceDescriptor descriptor,
 | 
| 
 |