| Index: src/crankshaft/s390/lithium-s390.h
|
| diff --git a/src/crankshaft/s390/lithium-s390.h b/src/crankshaft/s390/lithium-s390.h
|
| index cd5bacb04a7b45ce5e13d9fa29d34e573633d510..283629faa025dd8c340e5e5ef54ac9a41afaaea0 100644
|
| --- a/src/crankshaft/s390/lithium-s390.h
|
| +++ b/src/crankshaft/s390/lithium-s390.h
|
| @@ -1439,17 +1439,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")
|
|
|