| Index: src/crankshaft/x64/lithium-x64.h
|
| diff --git a/src/crankshaft/x64/lithium-x64.h b/src/crankshaft/x64/lithium-x64.h
|
| index 96e81c6731c647233d25a887d95b99651665f6a1..1feba4bf208508f0e97780e617538204d8634010 100644
|
| --- a/src/crankshaft/x64/lithium-x64.h
|
| +++ b/src/crankshaft/x64/lithium-x64.h
|
| @@ -131,7 +131,6 @@ class LCodeGen;
|
| V(StackCheck) \
|
| V(StoreCodeEntry) \
|
| V(StoreContextSlot) \
|
| - V(StoreFrameContext) \
|
| V(StoreKeyed) \
|
| V(StoreKeyedGeneric) \
|
| V(StoreNamedField) \
|
| @@ -2503,18 +2502,6 @@ class LLoadFieldByIndex final : public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| -class LStoreFrameContext: public LTemplateInstruction<0, 1, 0> {
|
| - public:
|
| - explicit LStoreFrameContext(LOperand* context) {
|
| - inputs_[0] = context;
|
| - }
|
| -
|
| - LOperand* context() { return inputs_[0]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(StoreFrameContext, "store-frame-context")
|
| -};
|
| -
|
| -
|
| class LChunkBuilder;
|
| class LPlatformChunk final : public LChunk {
|
| public:
|
|
|