| Index: src/compiler.cc
|
| diff --git a/src/compiler.cc b/src/compiler.cc
|
| index ebd4995871e6748c8826511e96bec6c28ff12cd2..13cdb9b1e9ea8ce355e0ea2c1ef78e8689dda514 100644
|
| --- a/src/compiler.cc
|
| +++ b/src/compiler.cc
|
| @@ -972,7 +972,9 @@ void Compiler::RecompileParallel(Handle<JSFunction> closure) {
|
|
|
| if (!isolate->optimizing_compiler_thread()->IsQueueAvailable()) {
|
| if (FLAG_trace_parallel_recompilation) {
|
| - PrintF(" ** Compilation queue, will retry opting on next run.\n");
|
| + PrintF(" ** Compilation queue full, will retry optimizing ");
|
| + closure->PrintName();
|
| + PrintF(" on next run.\n");
|
| }
|
| return;
|
| }
|
|
|