| Index: src/crankshaft/arm/lithium-arm.h
|
| diff --git a/src/crankshaft/arm/lithium-arm.h b/src/crankshaft/arm/lithium-arm.h
|
| index d3e8b94c013afc0c915baa578591a33c56bf6d7e..9806588ef5c65ba28c003dd878dfafe7b41d82f0 100644
|
| --- a/src/crankshaft/arm/lithium-arm.h
|
| +++ b/src/crankshaft/arm/lithium-arm.h
|
| @@ -47,7 +47,6 @@ class LCodeGen;
|
| V(ClampIToUint8) \
|
| V(ClampTToUint8) \
|
| V(ClassOfTestAndBranch) \
|
| - V(CompareMinusZeroAndBranch) \
|
| V(CompareNumericAndBranch) \
|
| V(CmpObjectEqAndBranch) \
|
| V(CmpHoleAndBranch) \
|
| @@ -991,22 +990,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) {
|
|
|