Skip to content

Commit

Permalink
JDK-8340109
Browse files Browse the repository at this point in the history
  • Loading branch information
MBaesken committed Oct 1, 2024
1 parent 684d246 commit 83372d6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/hotspot/share/ci/ciEnv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1616,7 +1616,10 @@ void ciEnv::dump_replay_data_helper(outputStream* out) {
for (int i = 0; i < objects->length(); i++) {
objects->at(i)->dump_replay_data(out);
}
dump_compile_data(out);

if (this->task() != nullptr) {
dump_compile_data(out);
}
out->flush();
}

Expand Down

0 comments on commit 83372d6

Please sign in to comment.