Index: src/crankshaft/x87/lithium-x87.h |
diff --git a/src/crankshaft/x87/lithium-x87.h b/src/crankshaft/x87/lithium-x87.h |
index fbb54ebbf08da43fd42b205691d0a195b812b173..833ba991d648005242ee3d30209ca113edba9e24 100644 |
--- a/src/crankshaft/x87/lithium-x87.h |
+++ b/src/crankshaft/x87/lithium-x87.h |
@@ -96,7 +96,6 @@ class LCodeGen; |
V(LoadKeyed) \ |
V(LoadKeyedGeneric) \ |
V(LoadNamedField) \ |
- V(LoadNamedGeneric) \ |
V(LoadRoot) \ |
V(MathAbs) \ |
V(MathClz32) \ |
@@ -1482,25 +1481,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) { |