Skip to content

Commit 7508d9f

Browse files
committed
8308906: Make CIPrintCompilerName a diagnostic flag
Reviewed-by: kvn, stuefe
1 parent a4bae3a commit 7508d9f

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

src/hotspot/share/compiler/compileTask.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -210,10 +210,6 @@ void CompileTask::print_line_on_error(outputStream* st, char* buf, int buflen) {
210210
// CompileTask::print_tty
211211
void CompileTask::print_tty() {
212212
ttyLocker ttyl; // keep the following output all in one block
213-
// print compiler name if requested
214-
if (CIPrintCompilerName) {
215-
tty->print("%s:", CompileBroker::compiler_name(comp_level()));
216-
}
217213
print(tty);
218214
}
219215

src/hotspot/share/compiler/compiler_globals.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
\
5151
/* compiler interface */ \
5252
\
53-
develop(bool, CIPrintCompilerName, false, \
53+
product(bool, CIPrintCompilerName, false, DIAGNOSTIC, \
5454
"when CIPrint is active, print the name of the active compiler") \
5555
\
5656
product(bool, CIPrintCompileQueue, false, DIAGNOSTIC, \

0 commit comments

Comments
 (0)