diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-23 20:03:24 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-23 20:03:24 +0000 |
commit | d134bccc6c6b6af4c72a6952bce16e26747cb650 (patch) | |
tree | 62676ee57198338096184e56a91032bf1d280983 /gcc | |
parent | 1006fe52a9bfcab1387e9aeaa7d9ceeb26604bb4 (diff) | |
download | gcc-d134bccc6c6b6af4c72a6952bce16e26747cb650.tar.gz |
* omp-low.c: Update documentation.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@110143 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/omp-low.c | 11 |
2 files changed, 8 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2a85326102f..0c2c7ba934a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ +2006-01-23 Diego Novillo <dnovillo@redhat.com> + + * omp-low.c: Update documentation. + 2006-01-23 Andrew Pinski <pinskia@physics.uc.edu> - Daniel Berlin <dberlin@dberlin.org> + Daniel Berlin <dberlin@dberlin.org> PR tree-opt/25315 PR tree-opt/25857 diff --git a/gcc/omp-low.c b/gcc/omp-low.c index f5bdcb99791..44f1b7e91b5 100644 --- a/gcc/omp-low.c +++ b/gcc/omp-low.c @@ -50,14 +50,9 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA re-gimplifing things when variables have been replaced with complex expressions. - Lowering of a parallel statement results in the contents of the - parallel being moved to a new function, to be invoked by the thread - library. The variable remapping process is complex enough that only - one level of parallel statement is handled at one time. If there are - nested parallel statements, those nested statements are handled when - the new function is lowered and optimized. The result is not 100% - optimal, but lexically nested parallels effectively only happens in - test suites. */ + Final code generation is done by pass_expand_omp. The flowgraph is + scanned for parallel regions which are then moved to a new + function, to be invoked by the thread library. */ /* Parallel region information. Every parallel and workshare directive is enclosed between two markers, the OMP_* directive |