| Index: src/mips/lithium-mips.h
|
| diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h
|
| index 19af84fb7b0438c821a25b3316419dfc496a1835..c1fa996db77d60c9ae6948b9d868243bcf733ee0 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) \
|
| @@ -1356,18 +1355,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) {
|
|
|