| Index: src/crankshaft/x64/lithium-x64.h
|
| diff --git a/src/crankshaft/x64/lithium-x64.h b/src/crankshaft/x64/lithium-x64.h
|
| index 64071ccee0621e770077b3f4fd2f280e4c584bd6..623421cbfbb2119de0de53fc20e208a12507d7b4 100644
|
| --- a/src/crankshaft/x64/lithium-x64.h
|
| +++ b/src/crankshaft/x64/lithium-x64.h
|
| @@ -1591,13 +1591,10 @@ class LLoadKeyedGeneric final : public LTemplateInstruction<1, 3, 1> {
|
| LOperand* temp_vector() { return temps_[0]; }
|
| };
|
|
|
| -
|
| -class LLoadGlobalGeneric final : public LTemplateInstruction<1, 2, 1> {
|
| +class LLoadGlobalGeneric final : public LTemplateInstruction<1, 1, 1> {
|
| public:
|
| - explicit LLoadGlobalGeneric(LOperand* context, LOperand* global_object,
|
| - LOperand* vector) {
|
| + explicit LLoadGlobalGeneric(LOperand* context, LOperand* vector) {
|
| inputs_[0] = context;
|
| - inputs_[1] = global_object;
|
| temps_[0] = vector;
|
| }
|
|
|
| @@ -1605,7 +1602,6 @@ class LLoadGlobalGeneric final : public LTemplateInstruction<1, 2, 1> {
|
| DECLARE_HYDROGEN_ACCESSOR(LoadGlobalGeneric)
|
|
|
| LOperand* context() { return inputs_[0]; }
|
| - LOperand* global_object() { return inputs_[1]; }
|
| LOperand* temp_vector() { return temps_[0]; }
|
|
|
| Handle<Object> name() const { return hydrogen()->name(); }
|
|
|