| Index: src/crankshaft/arm64/lithium-arm64.h
|
| diff --git a/src/crankshaft/arm64/lithium-arm64.h b/src/crankshaft/arm64/lithium-arm64.h
|
| index 4ddd3aceb57d2333be7f615eedb885cfd2ea1b75..7ee3402538e46fd873dba68aed286fce2cc74f71 100644
|
| --- a/src/crankshaft/arm64/lithium-arm64.h
|
| +++ b/src/crankshaft/arm64/lithium-arm64.h
|
| @@ -55,7 +55,6 @@ class LCodeGen;
|
| V(CmpMapAndBranch) \
|
| V(CmpObjectEqAndBranch) \
|
| V(CmpT) \
|
| - V(CompareMinusZeroAndBranch) \
|
| V(CompareNumericAndBranch) \
|
| V(ConstantD) \
|
| V(ConstantE) \
|
| @@ -1146,22 +1145,6 @@ class LCmpT final : public LTemplateInstruction<1, 3, 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 LCompareNumericAndBranch final : public LControlInstruction<2, 0> {
|
| public:
|
| LCompareNumericAndBranch(LOperand* left, LOperand* right) {
|
|
|