[PATCH] D79513: [dsymutil] Print statistics about debug_info reduction in verbose mode.
Jonas Devlieghere via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed May 6 13:35:25 PDT 2020
JDevlieghere marked 2 inline comments as done.
JDevlieghere added inline comments.
================
Comment at: llvm/lib/DWARFLinker/DWARFLinker.cpp:2533
+ if (Options.Verbose) {
+ // Create a vector sorted in descending order by output size.
----------------
friss wrote:
> Should we be using a different `--stat` flag for this? The verbose flag will output so much info on a real link...
Not to mention that verbose mode implies single threaded, which is the reason I put it under verbose. If we want to use `--stats` we'll need a way to synchronize the printing across architectures for fat binaries. Do you think that's worth it?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D79513/new/
https://reviews.llvm.org/D79513
More information about the llvm-commits
mailing list