| Index: src/crankshaft/mips64/lithium-mips64.h
 | 
| diff --git a/src/crankshaft/mips64/lithium-mips64.h b/src/crankshaft/mips64/lithium-mips64.h
 | 
| index 6252b88b4dbe436f7594d1dfbfaed6e8c30b96ff..ad3fb87f7c5e6a706e339b9619f2080a20da4df8 100644
 | 
| --- a/src/crankshaft/mips64/lithium-mips64.h
 | 
| +++ b/src/crankshaft/mips64/lithium-mips64.h
 | 
| @@ -1599,18 +1599,14 @@ class LLoadKeyedGeneric final : public LTemplateInstruction<1, 3, 1> {
 | 
|    DECLARE_HYDROGEN_ACCESSOR(LoadKeyedGeneric)
 | 
|  };
 | 
|  
 | 
| -
 | 
| -class LLoadGlobalGeneric final : public LTemplateInstruction<1, 2, 1> {
 | 
| +class LLoadGlobalGeneric final : public LTemplateInstruction<1, 1, 1> {
 | 
|   public:
 | 
| -  LLoadGlobalGeneric(LOperand* context, LOperand* global_object,
 | 
| -                     LOperand* vector) {
 | 
| +  LLoadGlobalGeneric(LOperand* context, LOperand* vector) {
 | 
|      inputs_[0] = context;
 | 
| -    inputs_[1] = global_object;
 | 
|      temps_[0] = vector;
 | 
|    }
 | 
|  
 | 
|    LOperand* context() { return inputs_[0]; }
 | 
| -  LOperand* global_object() { return inputs_[1]; }
 | 
|    LOperand* temp_vector() { return temps_[0]; }
 | 
|  
 | 
|    DECLARE_CONCRETE_INSTRUCTION(LoadGlobalGeneric, "load-global-generic")
 | 
| 
 |