Index: src/crankshaft/mips64/lithium-mips64.h |
diff --git a/src/crankshaft/mips64/lithium-mips64.h b/src/crankshaft/mips64/lithium-mips64.h |
index 88b5681aa32b8c9568d67620c99cf329fa434952..1376acbeef9833c5c9ab93c97dc14c9b3b797e9c 100644 |
--- a/src/crankshaft/mips64/lithium-mips64.h |
+++ b/src/crankshaft/mips64/lithium-mips64.h |
@@ -92,7 +92,6 @@ class LCodeGen; |
V(LoadFieldByIndex) \ |
V(LoadFunctionPrototype) \ |
V(LoadKeyed) \ |
- V(LoadKeyedGeneric) \ |
V(LoadNamedField) \ |
V(MathAbs) \ |
V(MathCos) \ |
@@ -1556,25 +1555,6 @@ class LLoadKeyed final : public LTemplateInstruction<1, 3, 0> { |
}; |
-class LLoadKeyedGeneric final : public LTemplateInstruction<1, 3, 1> { |
- public: |
- LLoadKeyedGeneric(LOperand* context, LOperand* object, LOperand* key, |
- LOperand* vector) { |
- inputs_[0] = context; |
- inputs_[1] = object; |
- 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) { |