Skip to content

Commit 2a5c715

Browse files
author
duke
committed
Backport efe3573b9b4ecec0630fdc1c61c765713a5b68e6
1 parent 62e0147 commit 2a5c715

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/hotspot/share/ci/ciEnv.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1674,7 +1674,10 @@ void ciEnv::dump_replay_data_helper(outputStream* out) {
16741674
for (int i = 0; i < objects->length(); i++) {
16751675
objects->at(i)->dump_replay_data(out);
16761676
}
1677-
dump_compile_data(out);
1677+
1678+
if (this->task() != nullptr) {
1679+
dump_compile_data(out);
1680+
}
16781681
out->flush();
16791682
}
16801683

0 commit comments

Comments
 (0)