| Index: src/crankshaft/mips/lithium-mips.h
|
| diff --git a/src/crankshaft/mips/lithium-mips.h b/src/crankshaft/mips/lithium-mips.h
|
| index c363bbc4402c2d024256ae66873c4643dcd46cbf..3296de4403c70505922391b6554aa263d14e3cda 100644
|
| --- a/src/crankshaft/mips/lithium-mips.h
|
| +++ b/src/crankshaft/mips/lithium-mips.h
|
| @@ -47,7 +47,6 @@ class LCodeGen;
|
| V(ClampIToUint8) \
|
| V(ClampTToUint8) \
|
| V(ClassOfTestAndBranch) \
|
| - V(CompareMinusZeroAndBranch) \
|
| V(CompareNumericAndBranch) \
|
| V(CmpObjectEqAndBranch) \
|
| V(CmpHoleAndBranch) \
|
| @@ -969,22 +968,6 @@ class LCmpHoleAndBranch final : public LControlInstruction<1, 0> {
|
| };
|
|
|
|
|
| -class LCompareMinusZeroAndBranch final : public LControlInstruction<1, 1> {
|
| - public:
|
| - LCompareMinusZeroAndBranch(LOperand* value, LOperand* temp) {
|
| - inputs_[0] = value;
|
| - temps_[0] = temp;
|
| - }
|
| -
|
| - LOperand* value() { return inputs_[0]; }
|
| - LOperand* temp() { return temps_[0]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(CompareMinusZeroAndBranch,
|
| - "cmp-minus-zero-and-branch")
|
| - DECLARE_HYDROGEN_ACCESSOR(CompareMinusZeroAndBranch)
|
| -};
|
| -
|
| -
|
| class LIsStringAndBranch final : public LControlInstruction<1, 1> {
|
| public:
|
| LIsStringAndBranch(LOperand* value, LOperand* temp) {
|
|
|