| Index: src/runtime/runtime-test.cc
|
| diff --git a/src/runtime/runtime-test.cc b/src/runtime/runtime-test.cc
|
| index 9a59d9c436c0ea4b6e011c99e958c683caf42847..6a812da8227e91b9e648e34703baee0c5ae166ff 100644
|
| --- a/src/runtime/runtime-test.cc
|
| +++ b/src/runtime/runtime-test.cc
|
| @@ -175,7 +175,7 @@
|
| if (isolate->concurrent_recompilation_enabled() &&
|
| sync_with_compiler_thread) {
|
| while (function->IsInOptimizationQueue()) {
|
| - isolate->optimizing_compile_dispatcher()->InstallOptimizedFunctions();
|
| + isolate->optimizing_compiler_thread()->InstallOptimizedFunctions();
|
| base::OS::Sleep(50);
|
| }
|
| }
|
| @@ -200,7 +200,7 @@
|
| DCHECK(args.length() == 0);
|
| RUNTIME_ASSERT(FLAG_block_concurrent_recompilation);
|
| RUNTIME_ASSERT(isolate->concurrent_recompilation_enabled());
|
| - isolate->optimizing_compile_dispatcher()->Unblock();
|
| + isolate->optimizing_compiler_thread()->Unblock();
|
| return isolate->heap()->undefined_value();
|
| }
|
|
|
|
|