From: Razya Ladelsky Date: Mon, 21 May 2012 07:39:38 +0000 (+0000) Subject: tree-parloops.c: Add myself to contributors, update TODO list, add link to wiki. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=70837b718c4fea4037e427c167368631e07b4f90;p=gcc.git tree-parloops.c: Add myself to contributors, update TODO list, add link to wiki. 2012-05-21 Razya Ladelsky * tree-parloops.c : Add myself to contributors, update TODO list, add link to wiki. From-SVN: r187704 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 55cf1fd30bd..dd53a628550 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-05-21 Razya Ladelsky + + * tree-parloops.c : Add myself to contributors, update + TODO list, add link to wiki. + 2012-05-21 Alan Modra * config/rs6000/predicates.md (input_operand): Don't match diff --git a/gcc/tree-parloops.c b/gcc/tree-parloops.c index 7c1e462a0fb..e95bf4cd8b8 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 and - Zdenek Dvorak . + Contributed by Sebastian Pop + Zdenek Dvorak and Razya Ladelsky . 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.