Index: src/crankshaft/x87/lithium-x87.h |
diff --git a/src/crankshaft/x87/lithium-x87.h b/src/crankshaft/x87/lithium-x87.h |
index f993a6a670de240b998fa1e62b408c9b4e262e2d..e1e5bc3a4695b90c29098a039b0f09008a605f2f 100644 |
--- a/src/crankshaft/x87/lithium-x87.h |
+++ b/src/crankshaft/x87/lithium-x87.h |
@@ -93,7 +93,6 @@ class LCodeGen; |
V(InstructionGap) \ |
V(Integer32ToDouble) \ |
V(InvokeFunction) \ |
- V(IsConstructCallAndBranch) \ |
V(IsStringAndBranch) \ |
V(IsSmiAndBranch) \ |
V(IsUndetectableAndBranch) \ |
@@ -1123,19 +1122,6 @@ class LHasCachedArrayIndexAndBranch final : public LControlInstruction<1, 0> { |
}; |
-class LIsConstructCallAndBranch final : public LControlInstruction<0, 1> { |
- public: |
- explicit LIsConstructCallAndBranch(LOperand* temp) { |
- temps_[0] = temp; |
- } |
- |
- LOperand* temp() { return temps_[0]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(IsConstructCallAndBranch, |
- "is-construct-call-and-branch") |
-}; |
- |
- |
class LClassOfTestAndBranch final : public LControlInstruction<1, 2> { |
public: |
LClassOfTestAndBranch(LOperand* value, LOperand* temp, LOperand* temp2) { |