| Index: src/crankshaft/ia32/lithium-ia32.h
|
| diff --git a/src/crankshaft/ia32/lithium-ia32.h b/src/crankshaft/ia32/lithium-ia32.h
|
| index a431d86a52f61367d936f3720a6eac0124482c06..5dd7cbfdcfed784f26e10204913181daf5d07fbc 100644
|
| --- a/src/crankshaft/ia32/lithium-ia32.h
|
| +++ b/src/crankshaft/ia32/lithium-ia32.h
|
| @@ -95,7 +95,6 @@ class LCodeGen;
|
| V(LoadKeyed) \
|
| V(LoadKeyedGeneric) \
|
| V(LoadNamedField) \
|
| - V(LoadNamedGeneric) \
|
| V(LoadRoot) \
|
| V(MathAbs) \
|
| V(MathClz32) \
|
| @@ -1492,25 +1491,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, 1> {
|
| public:
|
| LLoadFunctionPrototype(LOperand* function, LOperand* temp) {
|
|
|