Index: src/crankshaft/ppc/lithium-ppc.h |
diff --git a/src/crankshaft/ppc/lithium-ppc.h b/src/crankshaft/ppc/lithium-ppc.h |
index ac27639a973ca437d08e9e109b99528035710613..31e149b6a600470358f83d82324a373a75c260ea 100644 |
--- a/src/crankshaft/ppc/lithium-ppc.h |
+++ b/src/crankshaft/ppc/lithium-ppc.h |
@@ -29,7 +29,6 @@ class LCodeGen; |
V(BitI) \ |
V(BoundsCheck) \ |
V(Branch) \ |
- V(CallJSFunction) \ |
V(CallWithDescriptor) \ |
V(CallNewArray) \ |
V(CallRuntime) \ |
@@ -1658,21 +1657,6 @@ class LDeclareGlobals final : public LTemplateInstruction<0, 1, 0> { |
}; |
-class LCallJSFunction final : public LTemplateInstruction<1, 1, 0> { |
- public: |
- explicit LCallJSFunction(LOperand* function) { inputs_[0] = function; } |
- |
- LOperand* function() { return inputs_[0]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(CallJSFunction, "call-js-function") |
- DECLARE_HYDROGEN_ACCESSOR(CallJSFunction) |
- |
- void PrintDataTo(StringStream* stream) override; |
- |
- int arity() const { return hydrogen()->argument_count() - 1; } |
-}; |
- |
- |
class LCallWithDescriptor final : public LTemplateResultInstruction<1> { |
public: |
LCallWithDescriptor(CallInterfaceDescriptor descriptor, |