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