Index: src/crankshaft/mips64/lithium-mips64.h |
diff --git a/src/crankshaft/mips64/lithium-mips64.h b/src/crankshaft/mips64/lithium-mips64.h |
index 3f5f0c6c2da58b0ee0e24cc5e8d8836af0f84a6e..8d2324f7171e7e724f94dfd1ab4b304873d82573 100644 |
--- a/src/crankshaft/mips64/lithium-mips64.h |
+++ b/src/crankshaft/mips64/lithium-mips64.h |
@@ -23,7 +23,6 @@ class LCodeGen; |
V(AddI) \ |
V(AddS) \ |
V(Allocate) \ |
- V(AllocateBlockContext) \ |
V(ApplyArguments) \ |
V(ArgumentsElements) \ |
V(ArgumentsLength) \ |
@@ -2573,23 +2572,6 @@ class LStoreFrameContext: public LTemplateInstruction<0, 1, 0> { |
}; |
-class LAllocateBlockContext: public LTemplateInstruction<1, 2, 0> { |
- public: |
- LAllocateBlockContext(LOperand* context, LOperand* function) { |
- inputs_[0] = context; |
- inputs_[1] = function; |
- } |
- |
- LOperand* context() { return inputs_[0]; } |
- LOperand* function() { return inputs_[1]; } |
- |
- Handle<ScopeInfo> scope_info() { return hydrogen()->scope_info(); } |
- |
- DECLARE_CONCRETE_INSTRUCTION(AllocateBlockContext, "allocate-block-context") |
- DECLARE_HYDROGEN_ACCESSOR(AllocateBlockContext) |
-}; |
- |
- |
class LChunkBuilder; |
class LPlatformChunk final : public LChunk { |
public: |