aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2023-12-06 11:33:10 +0100
committerRichard Biener <rguenther@suse.de>2023-12-08 09:21:00 +0100
commit63a541a0905867cbd5762f55a928778724ed0ec7 (patch)
treeabd07d148b9afa5116b1669a254c637291f00f90
parent51b8259212791dbea846706bc5e9db5310f1fc10 (diff)
downloadgcc-63a541a0905867cbd5762f55a928778724ed0ec7.zip
gcc-63a541a0905867cbd5762f55a928778724ed0ec7.tar.gz
gcc-63a541a0905867cbd5762f55a928778724ed0ec7.tar.bz2
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.
-rw-r--r--gcc/tree-outof-ssa.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/tree-outof-ssa.cc b/gcc/tree-outof-ssa.cc
index 767623a..5dc58f1 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;
}