Skip to content

Commit

Permalink
8283890: Changes in CFG file format break C1Visualizer
Browse files Browse the repository at this point in the history
Reviewed-by: chagedorn, thartmann
  • Loading branch information
fparain committed Mar 31, 2022
1 parent 49fcc7a commit 207b099
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/hotspot/share/c1/c1_CFGPrinter.cpp
Expand Up @@ -244,13 +244,11 @@ void CFGPrinterOutput::print_block(BlockBegin* block) {
output()->cr();

output()->indent();
output()->print("successors ");
if (block->end() != NULL) {
output()->print("successors ");
for (i = 0; i < block->number_of_sux(); i++) {
output()->print("\"B%d\" ", block->sux_at(i)->block_id());
}
} else {
output()->print("(block has no end, cannot print successors)");
}
output()->cr();

Expand Down

1 comment on commit 207b099

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.