| Index: src/crankshaft/hydrogen.cc
|
| diff --git a/src/crankshaft/hydrogen.cc b/src/crankshaft/hydrogen.cc
|
| index 1ddc4a80b60b51239e74ccc0b4d4930f62c0aa89..1f497a09d1971dcb9be381acecad85b9ca4d7b52 100644
|
| --- a/src/crankshaft/hydrogen.cc
|
| +++ b/src/crankshaft/hydrogen.cc
|
| @@ -8037,7 +8037,8 @@ bool HOptimizedGraphBuilder::TryInline(Handle<JSFunction> target,
|
| top_info()->parse_info()->ast_value_factory());
|
| parse_info.set_ast_value_factory_owned(false);
|
|
|
| - CompilationInfo target_info(&parse_info, target);
|
| + Zone compile_zone(target_shared->GetIsolate()->allocator(), ZONE_NAME);
|
| + CompilationInfo target_info(&compile_zone, &parse_info, target);
|
|
|
| if (inlining_kind != CONSTRUCT_CALL_RETURN &&
|
| IsClassConstructor(target_shared->kind())) {
|
|
|