| Index: src/crankshaft/ia32/lithium-ia32.h
|
| diff --git a/src/crankshaft/ia32/lithium-ia32.h b/src/crankshaft/ia32/lithium-ia32.h
|
| index 717eabb711315da0eee198690bc8e92d80496b78..7dd22e0f666ba7b2ac855ea5dde29a12929d69bb 100644
|
| --- a/src/crankshaft/ia32/lithium-ia32.h
|
| +++ b/src/crankshaft/ia32/lithium-ia32.h
|
| @@ -1598,18 +1598,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")
|
|
|