| Index: src/arm/lithium-arm.h
 | 
| diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h
 | 
| index 6da7c8615ee1a00acd83487c65dbe85a0cdd47f1..6783b2e194d0866918055957b3ef2850817cf934 100644
 | 
| --- a/src/arm/lithium-arm.h
 | 
| +++ b/src/arm/lithium-arm.h
 | 
| @@ -106,6 +106,7 @@ class LCodeGen;
 | 
|    V(InstanceOfAndBranch)                        \
 | 
|    V(InstanceOfKnownGlobal)                      \
 | 
|    V(Integer32ToDouble)                          \
 | 
| +  V(InvokeFunction)                             \
 | 
|    V(IsNull)                                     \
 | 
|    V(IsNullAndBranch)                            \
 | 
|    V(IsObject)                                   \
 | 
| @@ -1412,6 +1413,23 @@ class LCallConstantFunction: public LTemplateInstruction<1, 0, 0> {
 | 
|  };
 | 
|  
 | 
|  
 | 
| +class LInvokeFunction: public LTemplateInstruction<1, 1, 0> {
 | 
| + public:
 | 
| +  LInvokeFunction(LOperand* function) {
 | 
| +    inputs_[0] = function;
 | 
| +  }
 | 
| +
 | 
| +  DECLARE_CONCRETE_INSTRUCTION(InvokeFunction, "invoke-function")
 | 
| +  DECLARE_HYDROGEN_ACCESSOR(InvokeFunction)
 | 
| +
 | 
| +  LOperand* function() { return inputs_[0]; }
 | 
| +
 | 
| +  virtual void PrintDataTo(StringStream* stream);
 | 
| +
 | 
| +  int arity() const { return hydrogen()->argument_count() - 1; }
 | 
| +};
 | 
| +
 | 
| +
 | 
|  class LCallKeyed: public LTemplateInstruction<1, 1, 0> {
 | 
|   public:
 | 
|    explicit LCallKeyed(LOperand* key) {
 | 
| 
 |