Index: src/crankshaft/ppc/lithium-ppc.h |
diff --git a/src/crankshaft/ppc/lithium-ppc.h b/src/crankshaft/ppc/lithium-ppc.h |
index 54242b4a50461eeac9d3056d0a585d14b0d62eb8..0dfde053b7d65d54374fd7bb780b7d60a03371f2 100644 |
--- a/src/crankshaft/ppc/lithium-ppc.h |
+++ b/src/crankshaft/ppc/lithium-ppc.h |
@@ -21,7 +21,6 @@ class LCodeGen; |
V(AccessArgumentsAt) \ |
V(AddI) \ |
V(Allocate) \ |
- V(AllocateBlockContext) \ |
V(ApplyArguments) \ |
V(ArgumentsElements) \ |
V(ArgumentsLength) \ |
@@ -2456,23 +2455,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: |