Index: src/crankshaft/mips/lithium-mips.h |
diff --git a/src/crankshaft/mips/lithium-mips.h b/src/crankshaft/mips/lithium-mips.h |
index c3efc0556a405363a4e30c33b19675189f65782e..f42f42e7675068690f705f39c62b7c26c3af60d3 100644 |
--- a/src/crankshaft/mips/lithium-mips.h |
+++ b/src/crankshaft/mips/lithium-mips.h |
@@ -90,7 +90,6 @@ class LCodeGen; |
V(LoadFieldByIndex) \ |
V(LoadFunctionPrototype) \ |
V(LoadKeyed) \ |
- V(LoadKeyedGeneric) \ |
V(LoadNamedField) \ |
V(MathAbs) \ |
V(MathCos) \ |
@@ -1494,25 +1493,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) { |