diff options
Diffstat (limited to 'gcc/doc/passes.texi')
-rw-r--r-- | gcc/doc/passes.texi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/doc/passes.texi b/gcc/doc/passes.texi index af11f725a43..fd4e323d90a 100644 --- a/gcc/doc/passes.texi +++ b/gcc/doc/passes.texi @@ -350,6 +350,12 @@ in @file{tree-ssa-dse.c} and is described by @code{pass_dse}. This pass transforms tail recursion into a loop. It is located in @file{tree-tailcall.c} and is described by @code{pass_tail_recursion}. +@item Forward store motion + +This pass sinks stores and assignments down the flowgraph closer to it's +use point. The pass is located in @file{tree-ssa-sink.c} and is +described by @code{pass_sink_code} + @item Partial redundancy elimination This pass eliminates partially redundant computations, as well as |