Index: src/crankshaft/ia32/lithium-ia32.h |
diff --git a/src/crankshaft/ia32/lithium-ia32.h b/src/crankshaft/ia32/lithium-ia32.h |
index 318d4154aa59119e310e4f40d65b3183bb884c2b..6736e28fd4b11c12ed3dde732c9047058b6c2246 100644 |
--- a/src/crankshaft/ia32/lithium-ia32.h |
+++ b/src/crankshaft/ia32/lithium-ia32.h |
@@ -37,7 +37,6 @@ class LCodeGen; |
V(CallJSFunction) \ |
V(CallWithDescriptor) \ |
V(CallFunction) \ |
- V(CallNew) \ |
V(CallNewArray) \ |
V(CallRuntime) \ |
V(CallStub) \ |
@@ -1906,25 +1905,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) { |