Commit 9886a872 by Sebastian Pop Committed by Sebastian Pop

invoke.texi (-ftree-loop-distribution): Add an example.

2008-03-10  Sebastian Pop  <sebastian.pop@amd.com>

	* doc/invoke.texi (-ftree-loop-distribution): Add an example.

From-SVN: r133076
parent e5eff6a3
2008-03-10 Sebastian Pop <sebastian.pop@amd.com>
* doc/invoke.texi (-ftree-loop-distribution): Add an example.
2008-03-10 Richard Guenther <rguenther@suse.de> 2008-03-10 Richard Guenther <rguenther@suse.de>
* tree-ssa-pre.c (get_sccvn_value): Simplify. * tree-ssa-pre.c (get_sccvn_value): Simplify.
......
...@@ -5937,7 +5937,22 @@ is used for debugging the data dependence analyzers. ...@@ -5937,7 +5937,22 @@ is used for debugging the data dependence analyzers.
@item -ftree-loop-distribution @item -ftree-loop-distribution
Perform loop distribution. This flag can improve cache performance on Perform loop distribution. This flag can improve cache performance on
big loop bodies and allow further loop optimizations, like big loop bodies and allow further loop optimizations, like
parallelization or vectorization, to take place. parallelization or vectorization, to take place. For example, the loop
@smallexample
DO I = 1, N
A(I) = B(I) + C
D(I) = E(I) * F
ENDDO
@end smallexample
is transformed to
@smallexample
DO I = 1, N
A(I) = B(I) + C
ENDDO
DO I = 1, N
D(I) = E(I) * F
ENDDO
@end smallexample
@item -ftree-loop-im @item -ftree-loop-im
@opindex ftree-loop-im @opindex ftree-loop-im
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment