Re: [PATCH 2/3] Add lto-dump tool.

2022-10-28 Thread Jeff Law via Gcc-patches
On 10/28/22 04:14, Thomas Schwinge wrote: Hi! This minor clean-up had fallen out of me working on something else in GCC's options machinery, several months ago: On 2019-03-12T18:14:04+0100, marxin wrote: gcc/lto/ChangeLog: * lang.opt: Add new language LTODump and options related

Re: [PATCH 2/3] Add lto-dump tool.

2022-10-28 Thread Thomas Schwinge
Hi! This minor clean-up had fallen out of me working on something else in GCC's options machinery, several months ago: On 2019-03-12T18:14:04+0100, marxin wrote: > gcc/lto/ChangeLog: > * lang.opt: Add new language LTODump and options related > to LTO dump tool. As this new "Languag

Re: [PATCH 2/3] Add lto-dump tool.

2019-04-26 Thread Richard Biener
On Thu, Mar 14, 2019 at 3:00 PM marxin wrote: > I think it's a good start. Some minor nits: +/* Dump the visibility of the symbol. */ + +const char * +symtab_node::dump_visibility () const +{ + static const char * const visibility_types[] += { "default", "protected", "hidden", "internal"

[PATCH 2/3] Add lto-dump tool.

2019-03-14 Thread marxin
gcc/ChangeLog: 2019-03-14 Hrishikesh Kulkarni Martin Liska * Makefile.in: Add lto-dump.texi. * cgraph.h: Add new functions dump_visibility and dump_type_name. * doc/gcc.texi: Include lto-dump section. * doc/lto-dump.texi: New file.