Index: src/compiler/change-lowering.cc |
diff --git a/src/compiler/change-lowering.cc b/src/compiler/change-lowering.cc |
index 213f7759648635771f9b9fd67f3f97be4723ca7d..c77ecf01c194abbc10443d2a4a88fec11a8795a9 100644 |
--- a/src/compiler/change-lowering.cc |
+++ b/src/compiler/change-lowering.cc |
@@ -551,8 +551,8 @@ Reduction ChangeLowering::Allocate(Node* node) { |
AllocationSpace space = OLD_SPACE; |
Runtime::FunctionId f = Runtime::kAllocateInTargetSpace; |
Operator::Properties props = node->op()->properties(); |
- CallDescriptor* desc = |
- Linkage::GetRuntimeCallDescriptor(jsgraph()->zone(), f, 2, props); |
+ CallDescriptor* desc = Linkage::GetRuntimeCallDescriptor( |
+ jsgraph()->zone(), f, 2, props, CallDescriptor::kNeedsFrameState); |
ExternalReference ref(f, jsgraph()->isolate()); |
int32_t flags = AllocateTargetSpace::encode(space); |
node->InsertInput(graph()->zone(), 0, jsgraph()->CEntryStubConstant(1)); |