gcc/
* doc/cfg.texi (Control Flow): Refer to passes.def instead of
passes.c.
* doc/passes.texi (Pass manager): Refer to passes.def.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@206054
138bc75d-0d04-0410-961f-
82ee72b054a4
2013-12-17 Thomas Schwinge <thomas@codesourcery.com>
+ * doc/cfg.texi (Control Flow): Refer to passes.def instead of
+ passes.c.
+ * doc/passes.texi (Pass manager): Refer to passes.def.
+
* doc/gccint.texi (Top): Fix inclusion order.
2013-12-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
In GCC, the representation of control flow is maintained throughout
the compilation process, from constructing the CFG early in
-@code{pass_build_cfg} to @code{pass_free_cfg} (see @file{passes.c}).
+@code{pass_build_cfg} to @code{pass_free_cfg} (see @file{passes.def}).
The CFG takes various different modes and may undergo extensive
manipulations, but the graph is always valid between its construction
and its release. This way, transfer of information such as data flow,
The pass manager is located in @file{passes.c}, @file{tree-optimize.c}
and @file{tree-pass.h}.
+It processes passes as described in @file{passes.def}.
Its job is to run all of the individual passes in the correct order,
and take care of standard bookkeeping that applies to every pass.