Index: src/mips/lithium-mips.h |
diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h |
index 75ab77dacebea31efbdde3ef6055d8de02965be6..a21c32342e538311bf81d71f23b251124aa08c6a 100644 |
--- a/src/mips/lithium-mips.h |
+++ b/src/mips/lithium-mips.h |
@@ -50,7 +50,6 @@ class LCodeGen; |
V(ArithmeticD) \ |
V(ArithmeticT) \ |
V(BitI) \ |
- V(BitNotI) \ |
V(BoundsCheck) \ |
V(Branch) \ |
V(CallConstantFunction) \ |
@@ -1355,18 +1354,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) { |