tree-parloops.c: Add myself to contributors, update TODO list, add link to wiki.
authorRazya Ladelsky <razya@il.ibm.com>
Mon, 21 May 2012 07:39:38 +0000 (07:39 +0000)
committerRazya Ladelsky <razya@gcc.gnu.org>
Mon, 21 May 2012 07:39:38 +0000 (07:39 +0000)
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

gcc/ChangeLog
gcc/tree-parloops.c

index 55cf1fd30bdefa1d7e2f85607b32a3a4c645c963..dd53a6285504527ba01306caaec1694988d5ae3a 100644 (file)
@@ -1,3 +1,8 @@
+2012-05-21  Razya Ladelsky  <razya@il.ibm.com>
+
+       * tree-parloops.c : Add myself to contributors, update 
+       TODO list, add link to wiki.
+
 2012-05-21  Alan Modra  <amodra@gmail.com>
 
        * config/rs6000/predicates.md (input_operand): Don't match
index 7c1e462a0fbd8fa9e02e06a9095739d6e3aa036f..e95bf4cd8b8812b790b1a30d732b045a3cf01eed 100644 (file)
@@ -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.