diff options
author | Razya Ladelsky <razya@il.ibm.com> | 2012-05-21 07:39:38 +0000 |
---|---|---|
committer | Razya Ladelsky <razya@gcc.gnu.org> | 2012-05-21 07:39:38 +0000 |
commit | 70837b718c4fea4037e427c167368631e07b4f90 (patch) | |
tree | 7ec1475d5d4cbe91e743ab6841b13572f73ad50a /gcc/tree-parloops.c | |
parent | 8dbabec2f87a2a7d0df250f74ec0cb841c9bcbd4 (diff) | |
download | gcc-70837b718c4fea4037e427c167368631e07b4f90.zip gcc-70837b718c4fea4037e427c167368631e07b4f90.tar.gz gcc-70837b718c4fea4037e427c167368631e07b4f90.tar.bz2 |
tree-parloops.c: Add myself to contributors, update TODO list, add link to wiki.
2012-05-21 Razya Ladelsky <razya@il.ibm.com>
* tree-parloops.c : Add myself to contributors, update
TODO list, add link to wiki.
From-SVN: r187704
Diffstat (limited to 'gcc/tree-parloops.c')
-rw-r--r-- | gcc/tree-parloops.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/tree-parloops.c b/gcc/tree-parloops.c index 7c1e462..e95bf4c 100644 --- a/gcc/tree-parloops.c +++ b/gcc/tree-parloops.c @@ -1,8 +1,8 @@ /* Loop autoparallelization. Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. - Contributed by Sebastian Pop <pop@cri.ensmp.fr> and - Zdenek Dvorak <dvorakz@suse.cz>. + Contributed by Sebastian Pop <pop@cri.ensmp.fr> + Zdenek Dvorak <dvorakz@suse.cz> and Razya Ladelsky <razya@il.ibm.com>. This file is part of GCC. @@ -54,9 +54,9 @@ along with GCC; see the file COPYING3. If not see -- if there are several parallelizable loops in a function, it may be possible to generate the threads just once (using synchronization to ensure that cross-loop dependences are obeyed). - -- handling of common scalar dependence patterns (accumulation, ...) - -- handling of non-innermost loops */ - + -- handling of common reduction patterns for outer loops. + + More info can also be found at http://gcc.gnu.org/wiki/AutoParInGCC */ /* Reduction handling: currently we use vect_force_simple_reduction() to detect reduction patterns. |