Index: src/crankshaft/arm/lithium-arm.h |
diff --git a/src/crankshaft/arm/lithium-arm.h b/src/crankshaft/arm/lithium-arm.h |
index 9d0d8fd75bc26d94dbb0fe7f1f76538b2c7daa3e..05dbca03a989caa45441c7d65b255364ad91e42a 100644 |
--- a/src/crankshaft/arm/lithium-arm.h |
+++ b/src/crankshaft/arm/lithium-arm.h |
@@ -33,7 +33,6 @@ class LCodeGen; |
V(CallJSFunction) \ |
V(CallWithDescriptor) \ |
V(CallFunction) \ |
- V(CallNew) \ |
V(CallNewArray) \ |
V(CallRuntime) \ |
V(CallStub) \ |
@@ -1893,25 +1892,6 @@ class LCallFunction final : public LTemplateInstruction<1, 2, 2> { |
}; |
-class LCallNew final : public LTemplateInstruction<1, 2, 0> { |
- public: |
- LCallNew(LOperand* context, LOperand* constructor) { |
- inputs_[0] = context; |
- inputs_[1] = constructor; |
- } |
- |
- LOperand* context() { return inputs_[0]; } |
- LOperand* constructor() { return inputs_[1]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(CallNew, "call-new") |
- DECLARE_HYDROGEN_ACCESSOR(CallNew) |
- |
- void PrintDataTo(StringStream* stream) override; |
- |
- int arity() const { return hydrogen()->argument_count() - 1; } |
-}; |
- |
- |
class LCallNewArray final : public LTemplateInstruction<1, 2, 0> { |
public: |
LCallNewArray(LOperand* context, LOperand* constructor) { |