This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: looking for the developer of tree-dump.c
Christian Ehrhardt <ehrhardt@mathematik.uni-ulm.de> writes:
| On Sat, Jul 24, 2004 at 09:04:57PM +0200, Gabriel Dos Reis wrote:
| > | For some reason the -fdump-translation-unit switch doesn't dumps the body of
| > | the functions from the AST if I compile sources with .c extension. (there is
| > | no "body:" in the .tu dumpfile) Are the functions bodies in the tree, but
| > | not dumped, or are they stored somewhere else ?
| >
| > I've come across the similar misbehaivour a week ago for mainline. I
| > think it is a regression introduced by the tree-ssa merge.
|
| It's probably a thinko in the way dump_enabled_p works for TDI_all.
| Users off dump_enabled_p expect that the function returns true if
| ANY dump is enabled whereas dump_enabled_p will only return true
| if ALL dumps were enabled via -fdump-tree-all.
|
| The following ad hoc patch works for me and fixes a few other cases
| where interesting things were not dumped.
Thanks. I think this should go on mainline, with appropriate
ChangeLog entries.
-- Gaby