Index: src/crankshaft/x87/lithium-x87.h |
diff --git a/src/crankshaft/x87/lithium-x87.h b/src/crankshaft/x87/lithium-x87.h |
index 833ba991d648005242ee3d30209ca113edba9e24..b55f54e3b9b3a514982180b0c1d9e85ce1c0e840 100644 |
--- a/src/crankshaft/x87/lithium-x87.h |
+++ b/src/crankshaft/x87/lithium-x87.h |
@@ -94,7 +94,6 @@ class LCodeGen; |
V(LoadFieldByIndex) \ |
V(LoadFunctionPrototype) \ |
V(LoadKeyed) \ |
- V(LoadKeyedGeneric) \ |
V(LoadNamedField) \ |
V(LoadRoot) \ |
V(MathAbs) \ |
@@ -1545,25 +1544,6 @@ inline static bool ExternalArrayOpRequiresTemp( |
} |
-class LLoadKeyedGeneric final : public LTemplateInstruction<1, 3, 1> { |
- public: |
- LLoadKeyedGeneric(LOperand* context, LOperand* obj, LOperand* key, |
- LOperand* vector) { |
- inputs_[0] = context; |
- inputs_[1] = obj; |
- inputs_[2] = key; |
- temps_[0] = vector; |
- } |
- |
- LOperand* context() { return inputs_[0]; } |
- LOperand* object() { return inputs_[1]; } |
- LOperand* key() { return inputs_[2]; } |
- LOperand* temp_vector() { return temps_[0]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(LoadKeyedGeneric, "load-keyed-generic") |
- DECLARE_HYDROGEN_ACCESSOR(LoadKeyedGeneric) |
-}; |
- |
class LLoadContextSlot final : public LTemplateInstruction<1, 1, 0> { |
public: |
explicit LLoadContextSlot(LOperand* context) { |