diff options
author | Sebastian Pop <sebastian.pop@amd.com> | 2011-01-31 19:30:55 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2011-01-31 19:30:55 +0000 |
commit | 7633415cb2c6c35afd15d70a99db3046a3d70349 (patch) | |
tree | abd1180e482827a3b96ab09d5742023738fc00cb /gcc/doc | |
parent | fabb6f8ea12176a06d181f26a6f3b824955b57e9 (diff) | |
download | gcc-7633415cb2c6c35afd15d70a99db3046a3d70349.zip gcc-7633415cb2c6c35afd15d70a99db3046a3d70349.tar.gz gcc-7633415cb2c6c35afd15d70a99db3046a3d70349.tar.bz2 |
Use Alias in common.opt to make -ftree-loop-linear an alias of -floop-interchange.
2011-01-31 Sebastian Pop <sebastian.pop@amd.com>
* common.opt (ftree-loop-linear): Use Alias to make it an alias of
-floop-interchange.
* invoke.texi (-ftree-loop-linear): Make it clear that this flag
is an alias of -floop-interchange and that it requires the
Graphite infrastructure.
* tree-ssa-loop.c (gate_graphite_transforms): Do not set
flag_loop_interchange based on the value of flag_tree_loop_linear.
From-SVN: r169445
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/invoke.texi | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 93e01f8..b25d8cf 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -6870,8 +6870,10 @@ at @option{-O} and higher. @item -ftree-loop-linear @opindex ftree-loop-linear -Perform linear loop transformations on tree. This flag can improve cache -performance and allow further loop optimizations to take place. +Perform loop interchange transformations on tree. Same as +@option{-floop-interchange}. To use this code transformation, GCC has +to be configured with @option{--with-ppl} and @option{--with-cloog} to +enable the Graphite loop transformation infrastructure. @item -floop-interchange @opindex floop-interchange |