| Index: src/crankshaft/arm/lithium-arm.h
|
| diff --git a/src/crankshaft/arm/lithium-arm.h b/src/crankshaft/arm/lithium-arm.h
|
| index 6ea162707cdda8cc9ba1e83207b3e364b2c90b4c..83d2cb4d56411208754695ae3d0d9cc7d1f3175f 100644
|
| --- a/src/crankshaft/arm/lithium-arm.h
|
| +++ b/src/crankshaft/arm/lithium-arm.h
|
| @@ -92,7 +92,6 @@ class LCodeGen;
|
| V(LoadKeyed) \
|
| V(LoadKeyedGeneric) \
|
| V(LoadNamedField) \
|
| - V(LoadNamedGeneric) \
|
| V(MathAbs) \
|
| V(MathClz32) \
|
| V(MathCos) \
|
| @@ -1483,25 +1482,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) {
|
|
|