Index: src/arm/lithium-arm.h |
=================================================================== |
--- src/arm/lithium-arm.h (revision 8207) |
+++ src/arm/lithium-arm.h (working copy) |
@@ -86,7 +86,6 @@ |
V(CmpSymbolEq) \ |
V(CmpSymbolEqAndBranch) \ |
V(CmpT) \ |
- V(CmpTAndBranch) \ |
V(ConstantD) \ |
V(ConstantI) \ |
V(ConstantT) \ |
@@ -108,7 +107,6 @@ |
V(HasInstanceTypeAndBranch) \ |
V(In) \ |
V(InstanceOf) \ |
- V(InstanceOfAndBranch) \ |
V(InstanceOfKnownGlobal) \ |
V(InstructionGap) \ |
V(Integer32ToDouble) \ |
@@ -910,20 +908,6 @@ |
}; |
-class LCmpTAndBranch: public LControlInstruction<2, 0> { |
- public: |
- LCmpTAndBranch(LOperand* left, LOperand* right) { |
- inputs_[0] = left; |
- inputs_[1] = right; |
- } |
- |
- DECLARE_CONCRETE_INSTRUCTION(CmpTAndBranch, "cmp-t-and-branch") |
- DECLARE_HYDROGEN_ACCESSOR(Compare) |
- |
- Token::Value op() const { return hydrogen()->token(); } |
-}; |
- |
- |
class LInstanceOf: public LTemplateInstruction<1, 2, 0> { |
public: |
LInstanceOf(LOperand* left, LOperand* right) { |
@@ -935,17 +919,6 @@ |
}; |
-class LInstanceOfAndBranch: public LControlInstruction<2, 0> { |
- public: |
- LInstanceOfAndBranch(LOperand* left, LOperand* right) { |
- inputs_[0] = left; |
- inputs_[1] = right; |
- } |
- |
- DECLARE_CONCRETE_INSTRUCTION(InstanceOfAndBranch, "instance-of-and-branch") |
-}; |
- |
- |
class LInstanceOfKnownGlobal: public LTemplateInstruction<1, 1, 1> { |
public: |
LInstanceOfKnownGlobal(LOperand* value, LOperand* temp) { |