Index: src/ia32/lithium-ia32.h |
diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h |
index 9ed9a58ead9e85b4a1fc49019c43b52c265b155a..effecb73e365e5fec5f65749237f402651abcd5d 100644 |
--- a/src/ia32/lithium-ia32.h |
+++ b/src/ia32/lithium-ia32.h |
@@ -50,7 +50,6 @@ class LCodeGen; |
V(ArithmeticD) \ |
V(ArithmeticT) \ |
V(BitI) \ |
- V(BitNotI) \ |
V(BoundsCheck) \ |
V(Branch) \ |
V(CallConstantFunction) \ |
@@ -1357,18 +1356,6 @@ class LThrow: public LTemplateInstruction<0, 2, 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) { |