| Index: src/arm/lithium-arm.h
|
| diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h
|
| index 8a80224fae2da1b4c5c77ba28b1453bfb50d65e9..b6fc2e6ca0511aa607f4aae5973f6c4802013fc1 100644
|
| --- a/src/arm/lithium-arm.h
|
| +++ b/src/arm/lithium-arm.h
|
| @@ -91,7 +91,6 @@ class LCodeGen;
|
| V(Integer32ToDouble) \
|
| V(InvokeFunction) \
|
| V(IsConstructCallAndBranch) \
|
| - V(IsObjectAndBranch) \
|
| V(IsStringAndBranch) \
|
| V(IsSmiAndBranch) \
|
| V(IsUndetectableAndBranch) \
|
| @@ -1009,23 +1008,6 @@ class LCompareMinusZeroAndBranch final : public LControlInstruction<1, 1> {
|
| };
|
|
|
|
|
| -class LIsObjectAndBranch final : public LControlInstruction<1, 1> {
|
| - public:
|
| - LIsObjectAndBranch(LOperand* value, LOperand* temp) {
|
| - inputs_[0] = value;
|
| - temps_[0] = temp;
|
| - }
|
| -
|
| - LOperand* value() { return inputs_[0]; }
|
| - LOperand* temp() { return temps_[0]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(IsObjectAndBranch, "is-object-and-branch")
|
| - DECLARE_HYDROGEN_ACCESSOR(IsObjectAndBranch)
|
| -
|
| - void PrintDataTo(StringStream* stream) override;
|
| -};
|
| -
|
| -
|
| class LIsStringAndBranch final : public LControlInstruction<1, 1> {
|
| public:
|
| LIsStringAndBranch(LOperand* value, LOperand* temp) {
|
|
|