Index: src/crankshaft/s390/lithium-s390.h |
diff --git a/src/crankshaft/s390/lithium-s390.h b/src/crankshaft/s390/lithium-s390.h |
index b946d4f271c8a65483d874f6700248067c27f8a2..f9710b1092e507e1eceeb3b65131607c104eb1ab 100644 |
--- a/src/crankshaft/s390/lithium-s390.h |
+++ b/src/crankshaft/s390/lithium-s390.h |
@@ -133,7 +133,6 @@ class LCodeGen; |
V(StringCharFromCode) \ |
V(StringCompareAndBranch) \ |
V(SubI) \ |
- V(RSubI) \ |
V(TaggedToI) \ |
V(ThisFunction) \ |
V(TransitionElementsKind) \ |
@@ -1090,20 +1089,6 @@ class LSubI final : public LTemplateInstruction<1, 2, 0> { |
DECLARE_HYDROGEN_ACCESSOR(Sub) |
}; |
-class LRSubI final : public LTemplateInstruction<1, 2, 0> { |
- public: |
- LRSubI(LOperand* left, LOperand* right) { |
- inputs_[0] = left; |
- inputs_[1] = right; |
- } |
- |
- LOperand* left() { return inputs_[0]; } |
- LOperand* right() { return inputs_[1]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(RSubI, "rsub-i") |
- DECLARE_HYDROGEN_ACCESSOR(Sub) |
-}; |
- |
class LConstantI final : public LTemplateInstruction<1, 0, 0> { |
public: |
DECLARE_CONCRETE_INSTRUCTION(ConstantI, "constant-i") |
@@ -2141,7 +2126,6 @@ class LChunkBuilder final : public LChunkBuilderBase { |
LInstruction* DoMultiplyAdd(HMul* mul, HValue* addend); |
LInstruction* DoMultiplySub(HValue* minuend, HMul* mul); |
- LInstruction* DoRSub(HSub* instr); |
static bool HasMagicNumberForDivisor(int32_t divisor); |