| Index: src/crankshaft/mips/lithium-mips.h
|
| diff --git a/src/crankshaft/mips/lithium-mips.h b/src/crankshaft/mips/lithium-mips.h
|
| index f06a8794205e54433a44bf6b8699462f7c636f99..f220a15b7d0720ed8f467a2bc3036da84314c36c 100644
|
| --- a/src/crankshaft/mips/lithium-mips.h
|
| +++ b/src/crankshaft/mips/lithium-mips.h
|
| @@ -1537,18 +1537,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")
|
|
|