OpenJDK / panama / dev
changeset 40084:98825f02aa8d
8162427: fix indent in CompileTask::print_tty
Reviewed-by: kvn
author | twisti |
---|---|
date | Fri, 22 Jul 2016 12:47:08 -1000 |
parents | 17565e6c55a0 |
children | ab996eefa57d |
files | hotspot/src/share/vm/compiler/compileTask.cpp |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/hotspot/src/share/vm/compiler/compileTask.cpp Mon Jul 18 20:45:51 2016 +0200 +++ b/hotspot/src/share/vm/compiler/compileTask.cpp Fri Jul 22 12:47:08 2016 -1000 @@ -186,8 +186,10 @@ void CompileTask::print_tty() { ttyLocker ttyl; // keep the following output all in one block // print compiler name if requested - if (CIPrintCompilerName) tty->print("%s:", CompileBroker::compiler_name(comp_level())); - print(tty); + if (CIPrintCompilerName) { + tty->print("%s:", CompileBroker::compiler_name(comp_level())); + } + print(tty); } // ------------------------------------------------------------------