From: Richard Biener Date: Wed, 6 Dec 2023 10:33:10 +0000 (+0100) Subject: Shrink out-of-SSA dump X-Git-Tag: basepoints/gcc-15~3829 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=63a541a0905867cbd5762f55a928778724ed0ec7;p=thirdparty%2Fgcc.git Shrink out-of-SSA dump The following removes the second GIMPLE function dump after remove_ssa_form which used to rewrite the IL with the coalescing result but doesn't do so since a long time now. * tree-outof-ssa.cc (rewrite_out_of_ssa): Dump GIMPLE once only, after final IL adjustments. --- diff --git a/gcc/tree-outof-ssa.cc b/gcc/tree-outof-ssa.cc index 767623ab8eac..5dc58f1b8081 100644 --- a/gcc/tree-outof-ssa.cc +++ b/gcc/tree-outof-ssa.cc @@ -1352,8 +1352,5 @@ rewrite_out_of_ssa (struct ssaexpand *sa) remove_ssa_form (flag_tree_ter, sa); - if (dump_file && (dump_flags & TDF_DETAILS)) - gimple_dump_cfg (dump_file, dump_flags & ~TDF_DETAILS); - return 0; }