| Index: src/crankshaft/x87/lithium-x87.h
|
| diff --git a/src/crankshaft/x87/lithium-x87.h b/src/crankshaft/x87/lithium-x87.h
|
| index 98703aecd77d53704389558f8761f945991130be..51bf0a7e4d10babd35f7624fcd8a0fd0b828fdff 100644
|
| --- a/src/crankshaft/x87/lithium-x87.h
|
| +++ b/src/crankshaft/x87/lithium-x87.h
|
| @@ -1579,18 +1579,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")
|
|
|