| Index: src/ppc/lithium-ppc.h
|
| diff --git a/src/ppc/lithium-ppc.h b/src/ppc/lithium-ppc.h
|
| index 0bc99ceaae182d35fc1642ae55a27f95d4ed0a84..e862a11f638de2dead9d2c114bfdde8604ad1f62 100644
|
| --- a/src/ppc/lithium-ppc.h
|
| +++ b/src/ppc/lithium-ppc.h
|
| @@ -79,7 +79,6 @@ class LCodeGen;
|
| V(FlooringDivI) \
|
| V(ForInCacheArray) \
|
| V(ForInPrepareMap) \
|
| - V(FunctionLiteral) \
|
| V(GetCachedArrayIndex) \
|
| V(Goto) \
|
| V(HasCachedArrayIndexAndBranch) \
|
| @@ -2460,17 +2459,6 @@ class LRegExpLiteral final : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LFunctionLiteral final : public LTemplateInstruction<1, 1, 0> {
|
| - public:
|
| - explicit LFunctionLiteral(LOperand* context) { inputs_[0] = context; }
|
| -
|
| - LOperand* context() { return inputs_[0]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(FunctionLiteral, "function-literal")
|
| - DECLARE_HYDROGEN_ACCESSOR(FunctionLiteral)
|
| -};
|
| -
|
| -
|
| class LToFastProperties final : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LToFastProperties(LOperand* value) { inputs_[0] = value; }
|
|
|