| Index: src/crankshaft/s390/lithium-s390.h
|
| diff --git a/src/crankshaft/s390/lithium-s390.h b/src/crankshaft/s390/lithium-s390.h
|
| index cda3467510f4bee0026981ee4d18ee08d3449644..33fe79d3306a4ab4bce9762f5fa271a9444bce6d 100644
|
| --- a/src/crankshaft/s390/lithium-s390.h
|
| +++ b/src/crankshaft/s390/lithium-s390.h
|
| @@ -92,7 +92,6 @@ class LCodeGen;
|
| V(LoadKeyed) \
|
| V(LoadKeyedGeneric) \
|
| V(LoadNamedField) \
|
| - V(LoadNamedGeneric) \
|
| V(MathAbs) \
|
| V(MathClz32) \
|
| V(MathCos) \
|
| @@ -1357,24 +1356,6 @@ class LLoadNamedField final : public LTemplateInstruction<1, 1, 0> {
|
| DECLARE_HYDROGEN_ACCESSOR(LoadNamedField)
|
| };
|
|
|
| -class LLoadNamedGeneric final : public LTemplateInstruction<1, 2, 1> {
|
| - public:
|
| - LLoadNamedGeneric(LOperand* context, LOperand* object, LOperand* vector) {
|
| - inputs_[0] = context;
|
| - inputs_[1] = object;
|
| - temps_[0] = vector;
|
| - }
|
| -
|
| - LOperand* context() { return inputs_[0]; }
|
| - LOperand* object() { return inputs_[1]; }
|
| - LOperand* temp_vector() { return temps_[0]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(LoadNamedGeneric, "load-named-generic")
|
| - DECLARE_HYDROGEN_ACCESSOR(LoadNamedGeneric)
|
| -
|
| - Handle<Object> name() const { return hydrogen()->name(); }
|
| -};
|
| -
|
| class LLoadFunctionPrototype final : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LLoadFunctionPrototype(LOperand* function) { inputs_[0] = function; }
|
|
|