Index: src/crankshaft/x87/lithium-x87.h |
diff --git a/src/crankshaft/x87/lithium-x87.h b/src/crankshaft/x87/lithium-x87.h |
index b55f54e3b9b3a514982180b0c1d9e85ce1c0e840..623e3410a4f38aea098386558bd6c3233c1af9d2 100644 |
--- a/src/crankshaft/x87/lithium-x87.h |
+++ b/src/crankshaft/x87/lithium-x87.h |
@@ -76,9 +76,7 @@ class LCodeGen; |
V(FlooringDivI) \ |
V(ForInCacheArray) \ |
V(ForInPrepareMap) \ |
- V(GetCachedArrayIndex) \ |
V(Goto) \ |
- V(HasCachedArrayIndexAndBranch) \ |
V(HasInPrototypeChainAndBranch) \ |
V(HasInstanceTypeAndBranch) \ |
V(InnerAllocatedObject) \ |
@@ -1071,35 +1069,6 @@ class LHasInstanceTypeAndBranch final : public LControlInstruction<1, 1> { |
void PrintDataTo(StringStream* stream) override; |
}; |
- |
-class LGetCachedArrayIndex final : public LTemplateInstruction<1, 1, 0> { |
- public: |
- explicit LGetCachedArrayIndex(LOperand* value) { |
- inputs_[0] = value; |
- } |
- |
- LOperand* value() { return inputs_[0]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(GetCachedArrayIndex, "get-cached-array-index") |
- DECLARE_HYDROGEN_ACCESSOR(GetCachedArrayIndex) |
-}; |
- |
- |
-class LHasCachedArrayIndexAndBranch final : public LControlInstruction<1, 0> { |
- public: |
- explicit LHasCachedArrayIndexAndBranch(LOperand* value) { |
- inputs_[0] = value; |
- } |
- |
- LOperand* value() { return inputs_[0]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(HasCachedArrayIndexAndBranch, |
- "has-cached-array-index-and-branch") |
- |
- void PrintDataTo(StringStream* stream) override; |
-}; |
- |
- |
class LClassOfTestAndBranch final : public LControlInstruction<1, 2> { |
public: |
LClassOfTestAndBranch(LOperand* value, LOperand* temp, LOperand* temp2) { |