| Index: src/arm64/lithium-arm64.h
 | 
| diff --git a/src/arm64/lithium-arm64.h b/src/arm64/lithium-arm64.h
 | 
| index 159e60cc542644a4bd6c36997af18d92e2914134..a77a6da38fdaf651be3c7822a4d1de6fa7c7ec78 100644
 | 
| --- a/src/arm64/lithium-arm64.h
 | 
| +++ b/src/arm64/lithium-arm64.h
 | 
| @@ -82,7 +82,6 @@ class LCodeGen;
 | 
|    V(FlooringDivI)                            \
 | 
|    V(ForInCacheArray)                         \
 | 
|    V(ForInPrepareMap)                         \
 | 
| -  V(FunctionLiteral)                         \
 | 
|    V(GetCachedArrayIndex)                     \
 | 
|    V(Goto)                                    \
 | 
|    V(HasCachedArrayIndexAndBranch)            \
 | 
| @@ -1697,19 +1696,6 @@ class LLoadNamedField final : public LTemplateInstruction<1, 1, 0> {
 | 
|  };
 | 
|  
 | 
|  
 | 
| -class LFunctionLiteral final : public LTemplateInstruction<1, 1, 0> {
 | 
| - public:
 | 
| -  explicit LFunctionLiteral(LOperand* context) {
 | 
| -    inputs_[0] = context;
 | 
| -  }
 | 
| -
 | 
| -  LOperand* context() { return inputs_[0]; }
 | 
| -
 | 
| -  DECLARE_CONCRETE_INSTRUCTION(FunctionLiteral, "function-literal")
 | 
| -  DECLARE_HYDROGEN_ACCESSOR(FunctionLiteral)
 | 
| -};
 | 
| -
 | 
| -
 | 
|  class LLoadFunctionPrototype final : public LTemplateInstruction<1, 1, 1> {
 | 
|   public:
 | 
|    LLoadFunctionPrototype(LOperand* function, LOperand* temp) {
 | 
| 
 |