From: Richard Biener Date: Tue, 23 May 2023 09:55:45 +0000 (+0200) Subject: Dump ANTIC_OUT before pruning it X-Git-Tag: basepoints/gcc-15~9007 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b4ae6e1ec8d71ab0dd1612999bb78108d56f4c2;p=thirdparty%2Fgcc.git Dump ANTIC_OUT before pruning it This dumps ANTIC_OUT before pruning clobbered mems from it as part of the ANTIC_IN compute. * tree-ssa-pre.cc (compute_antic_aux): Dump the correct ANTIC_OUT. --- diff --git a/gcc/tree-ssa-pre.cc b/gcc/tree-ssa-pre.cc index d56431b41451..b1ceea90a8e0 100644 --- a/gcc/tree-ssa-pre.cc +++ b/gcc/tree-ssa-pre.cc @@ -2216,6 +2216,10 @@ compute_antic_aux (basic_block block, bool block_has_abnormal_pred_edge) } } + /* Dump ANTIC_OUT before it's pruned. */ + if (dump_file && (dump_flags & TDF_DETAILS)) + print_bitmap_set (dump_file, ANTIC_OUT, "ANTIC_OUT", block->index); + /* Prune expressions that are clobbered in block and thus become invalid if translated from ANTIC_OUT to ANTIC_IN. */ prune_clobbered_mems (ANTIC_OUT, block); @@ -2270,9 +2274,6 @@ compute_antic_aux (basic_block block, bool block_has_abnormal_pred_edge) maybe_dump_sets: if (dump_file && (dump_flags & TDF_DETAILS)) { - if (ANTIC_OUT) - print_bitmap_set (dump_file, ANTIC_OUT, "ANTIC_OUT", block->index); - if (changed) fprintf (dump_file, "[changed] "); print_bitmap_set (dump_file, ANTIC_IN (block), "ANTIC_IN",