| Index: src/hydrogen.cc
|
| diff --git a/src/hydrogen.cc b/src/hydrogen.cc
|
| index a2f63202b3296d5a0f30538b4818d908c164036e..339e0d3a8aba3297551cefdabb6e799b63201e1a 100644
|
| --- a/src/hydrogen.cc
|
| +++ b/src/hydrogen.cc
|
| @@ -7626,6 +7626,9 @@ bool HOptimizedGraphBuilder::TryInline(Handle<JSFunction> target,
|
|
|
| // Parse and allocate variables.
|
| CompilationInfo target_info(target, zone());
|
| + // Use the same AstValueFactory for creating strings in the sub-compilation
|
| + // step, but don't transfer ownership to target_info.
|
| + target_info.SetAstValueFactory(top_info()->ast_value_factory(), false);
|
| Handle<SharedFunctionInfo> target_shared(target->shared());
|
| if (!Parser::Parse(&target_info) || !Scope::Analyze(&target_info)) {
|
| if (target_info.isolate()->has_pending_exception()) {
|
|
|