Index: src/crankshaft/mips64/lithium-mips64.h |
diff --git a/src/crankshaft/mips64/lithium-mips64.h b/src/crankshaft/mips64/lithium-mips64.h |
index f5d2df250aaedf2142e2f0b4cd314385767904a0..f305aeac4d4c29063163e8706ff8efb4929fc995 100644 |
--- a/src/crankshaft/mips64/lithium-mips64.h |
+++ b/src/crankshaft/mips64/lithium-mips64.h |
@@ -35,7 +35,6 @@ class LCodeGen; |
V(CallJSFunction) \ |
V(CallWithDescriptor) \ |
V(CallFunction) \ |
- V(CallNew) \ |
V(CallNewArray) \ |
V(CallRuntime) \ |
V(CallStub) \ |
@@ -1918,25 +1917,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) { |