Index: src/arm/lithium-arm.h |
diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h |
index 7515cb3e9dfa8b7301a40531e03d67598e1a0ade..f0885c378189fc4378071d5ea60bd62c62e28267 100644 |
--- a/src/arm/lithium-arm.h |
+++ b/src/arm/lithium-arm.h |
@@ -74,7 +74,6 @@ class LCodeGen; |
V(ClampIToUint8) \ |
V(ClampTToUint8) \ |
V(ClassOfTestAndBranch) \ |
- V(CmpConstantEqAndBranch) \ |
V(CompareNumericAndBranch) \ |
V(CmpObjectEqAndBranch) \ |
V(CmpMapAndBranch) \ |
@@ -888,20 +887,6 @@ class LCmpObjectEqAndBranch: public LControlInstruction<2, 0> { |
}; |
-class LCmpConstantEqAndBranch: public LControlInstruction<1, 0> { |
- public: |
- explicit LCmpConstantEqAndBranch(LOperand* left) { |
- inputs_[0] = left; |
- } |
- |
- LOperand* left() { return inputs_[0]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(CmpConstantEqAndBranch, |
- "cmp-constant-eq-and-branch") |
- DECLARE_HYDROGEN_ACCESSOR(CompareConstantEqAndBranch) |
-}; |
- |
- |
class LIsObjectAndBranch: public LControlInstruction<1, 1> { |
public: |
LIsObjectAndBranch(LOperand* value, LOperand* temp) { |