Index: src/crankshaft/mips/lithium-mips.h |
diff --git a/src/crankshaft/mips/lithium-mips.h b/src/crankshaft/mips/lithium-mips.h |
index 2927dcdc368dbf6280d0138bf72528ad9ffb496a..8b36c5d055dfb71e045a9a54e2e2355e6e05d93f 100644 |
--- a/src/crankshaft/mips/lithium-mips.h |
+++ b/src/crankshaft/mips/lithium-mips.h |
@@ -21,7 +21,6 @@ class LCodeGen; |
V(AccessArgumentsAt) \ |
V(AddI) \ |
V(Allocate) \ |
- V(AllocateBlockContext) \ |
V(ApplyArguments) \ |
V(ArgumentsElements) \ |
V(ArgumentsLength) \ |
@@ -2527,23 +2526,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: |