Index: src/crankshaft/arm64/lithium-arm64.h |
diff --git a/src/crankshaft/arm64/lithium-arm64.h b/src/crankshaft/arm64/lithium-arm64.h |
index e7b59245f4f3440263528010b6d89b65cac09ffe..14abeb0ba6dfd0ce2672ddf6dac0726b902f7dcc 100644 |
--- a/src/crankshaft/arm64/lithium-arm64.h |
+++ b/src/crankshaft/arm64/lithium-arm64.h |
@@ -23,7 +23,6 @@ class LCodeGen; |
V(AddI) \ |
V(AddS) \ |
V(Allocate) \ |
- V(AllocateBlockContext) \ |
V(ApplyArguments) \ |
V(ArgumentsElements) \ |
V(ArgumentsLength) \ |
@@ -2901,23 +2900,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 LWrapReceiver final : public LTemplateInstruction<1, 2, 0> { |
public: |
LWrapReceiver(LOperand* receiver, LOperand* function) { |