--- old/src/share/vm/compiler/compileBroker.cpp 2014-09-17 10:38:05.320150645 +0200 +++ new/src/share/vm/compiler/compileBroker.cpp 2014-09-17 10:38:05.212150640 +0200 @@ -789,12 +789,12 @@ void CompileQueue::print(outputStream* st) { - assert_locked_or_safepoint(lock()); + MutexLocker locker(lock()); st->print_cr("Contents of %s", name()); st->print_cr("----------------------------"); CompileTask* task = _first; if (task == NULL) { - st->print_cr("Empty");; + st->print_cr("Empty"); } else { while (task != NULL) { task->print_compilation(st, NULL, true, true);