]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Shrink out-of-SSA dump
authorRichard Biener <rguenther@suse.de>
Wed, 6 Dec 2023 10:33:10 +0000 (11:33 +0100)
committerRichard Biener <rguenther@suse.de>
Fri, 8 Dec 2023 08:21:00 +0000 (09:21 +0100)
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.

gcc/tree-outof-ssa.cc

index 767623ab8eac65908c49975b3cb0149f23c5511c..5dc58f1b8081d527f13b9e6bc7ee0be1d3917405 100644 (file)
@@ -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;
 }