diff options
author | Basile Starynkevitch <bstarynk@gcc.gnu.org> | 2008-08-01 05:19:40 +0000 |
---|---|---|
committer | Basile Starynkevitch <bstarynk@gcc.gnu.org> | 2008-08-01 05:19:40 +0000 |
commit | 8e352cd32ce32dc689cd716921428709143f8920 (patch) | |
tree | 9484ffe873ca8d908800e707f82562aafe746b99 /gcc/doc | |
parent | f2d6ca5081ba8fb31b5d03545f45cce12ac67b3f (diff) | |
download | gcc-8e352cd32ce32dc689cd716921428709143f8920.zip gcc-8e352cd32ce32dc689cd716921428709143f8920.tar.gz gcc-8e352cd32ce32dc689cd716921428709143f8920.tar.bz2 |
tree-pass.h: Added comment about not dumping passes with name starting with star in struct...
2008-08-01 Basile Starynkevitch <basile@starynkevitch>
* gcc/tree-pass.h: Added comment about not dumping passes with name
starting with star in struct opt_pass.
* gcc/passes.c (register_dump_files_1): Don't do dump for a pass with
name starting with star.
* gcc/doc/passes.texi (Pass manager): Mention pass names and special
meaning of star prefix to avoid dump.
From-SVN: r138450
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/passes.texi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/doc/passes.texi b/gcc/doc/passes.texi index a229538..daeaf95 100644 --- a/gcc/doc/passes.texi +++ b/gcc/doc/passes.texi @@ -166,6 +166,10 @@ not attempt to (re-)generate data structures or lower intermediate language form based on the requirements of the next pass. Nevertheless, what is present is useful, and a far sight better than nothing at all. +Each pass may have its own dump file (for GCC debugging purposes). +Passes without any names, or with a name starting with a star, do not +dump anything. + TODO: describe the global variables set up by the pass manager, and a brief description of how a new pass should use it. I need to look at what info rtl passes use first@enddots{} |