| Index: src/mips/lithium-mips.h
 | 
| diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h
 | 
| index 80635c3896a130f966a7d357a0d773b823f69e2e..7ebbf07908163e67d536ea58c3fca6c8604b22c8 100644
 | 
| --- a/src/mips/lithium-mips.h
 | 
| +++ b/src/mips/lithium-mips.h
 | 
| @@ -120,7 +120,6 @@ class LCodeGen;
 | 
|    V(IsStringAndBranch)                          \
 | 
|    V(IsSmiAndBranch)                             \
 | 
|    V(IsUndetectableAndBranch)                    \
 | 
| -  V(JSArrayLength)                              \
 | 
|    V(Label)                                      \
 | 
|    V(LazyBailout)                                \
 | 
|    V(LoadContextSlot)                            \
 | 
| @@ -1111,19 +1110,6 @@ class LCmpMapAndBranch: public LTemplateInstruction<0, 1, 1> {
 | 
|  };
 | 
|  
 | 
|  
 | 
| -class LJSArrayLength: public LTemplateInstruction<1, 1, 0> {
 | 
| - public:
 | 
| -  explicit LJSArrayLength(LOperand* value) {
 | 
| -    inputs_[0] = value;
 | 
| -  }
 | 
| -
 | 
| -  LOperand* value() { return inputs_[0]; }
 | 
| -
 | 
| -  DECLARE_CONCRETE_INSTRUCTION(JSArrayLength, "js-array-length")
 | 
| -  DECLARE_HYDROGEN_ACCESSOR(JSArrayLength)
 | 
| -};
 | 
| -
 | 
| -
 | 
|  class LFixedArrayBaseLength: public LTemplateInstruction<1, 1, 0> {
 | 
|   public:
 | 
|    explicit LFixedArrayBaseLength(LOperand* value) {
 | 
| 
 |