summaryrefslogtreecommitdiff
path: root/gcc/omp-low.c
diff options
context:
space:
mode:
authorrwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4>2008-06-15 09:55:56 +0000
committerrwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4>2008-06-15 09:55:56 +0000
commitbde357c89ee20017fbe9e40fb81595fc3181fa95 (patch)
tree33ab050ea2db763c9c8d741701f0fa78e105ca12 /gcc/omp-low.c
parentc24c5face1810b7815ba6b1274aa9bef587c3b2f (diff)
downloadgcc-bde357c89ee20017fbe9e40fb81595fc3181fa95.tar.gz
gcc/
* omp-low.c (extract_omp_for_data): Fix comment typo. * c.opt: Fix typo. gcc/cp/ * parser.c: Fix comment typo. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@136804 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/omp-low.c')
-rw-r--r--gcc/omp-low.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/omp-low.c b/gcc/omp-low.c
index e51369aaffe..09b7260a66e 100644
--- a/gcc/omp-low.c
+++ b/gcc/omp-low.c
@@ -235,7 +235,7 @@ extract_omp_for_data (tree for_stmt, struct omp_for_data *fd,
/* FIXME: for now map schedule(auto) to schedule(static).
There should be analysis to determine whether all iterations
are approximately the same amount of work (then schedule(static)
- is best) or if it varries (then schedule(dynamic,N) is better). */
+ is best) or if it varies (then schedule(dynamic,N) is better). */
if (fd->sched_kind == OMP_CLAUSE_SCHEDULE_AUTO)
{
fd->sched_kind = OMP_CLAUSE_SCHEDULE_STATIC;