| Index: src/crankshaft/mips/lithium-mips.h
|
| diff --git a/src/crankshaft/mips/lithium-mips.h b/src/crankshaft/mips/lithium-mips.h
|
| index e791470f7bbb86ec1ddade422ebb5042b71052b7..c3efc0556a405363a4e30c33b19675189f65782e 100644
|
| --- a/src/crankshaft/mips/lithium-mips.h
|
| +++ b/src/crankshaft/mips/lithium-mips.h
|
| @@ -92,7 +92,6 @@ class LCodeGen;
|
| V(LoadKeyed) \
|
| V(LoadKeyedGeneric) \
|
| V(LoadNamedField) \
|
| - V(LoadNamedGeneric) \
|
| V(MathAbs) \
|
| V(MathCos) \
|
| V(MathSin) \
|
| @@ -1447,25 +1446,6 @@ class LLoadNamedField final : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -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) {
|
|
|