Index: src/arm/lithium-arm.h |
diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h |
index db2d898a8593b794ac2890f49e4bce7494566241..7ce907a7abf77dea9cbbb3383561ff32a1a0de29 100644 |
--- a/src/arm/lithium-arm.h |
+++ b/src/arm/lithium-arm.h |
@@ -50,7 +50,6 @@ class LCodeGen; |
V(ArithmeticD) \ |
V(ArithmeticT) \ |
V(BitI) \ |
- V(BitNotI) \ |
V(BoundsCheck) \ |
V(Branch) \ |
V(CallConstantFunction) \ |
@@ -1377,18 +1376,6 @@ class LThrow: public LTemplateInstruction<0, 1, 0> { |
}; |
-class LBitNotI: public LTemplateInstruction<1, 1, 0> { |
- public: |
- explicit LBitNotI(LOperand* value) { |
- inputs_[0] = value; |
- } |
- |
- LOperand* value() { return inputs_[0]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(BitNotI, "bit-not-i") |
-}; |
- |
- |
class LAddI: public LTemplateInstruction<1, 2, 0> { |
public: |
LAddI(LOperand* left, LOperand* right) { |