From 1cbc62c077deab75b6ced6c89874d25f5b785ec9 Mon Sep 17 00:00:00 2001 From: Ralf Wildenhues Date: Sun, 15 Jun 2008 09:55:56 +0000 Subject: omp-low.c (extract_omp_for_data): Fix comment typo. gcc/ * omp-low.c (extract_omp_for_data): Fix comment typo. * c.opt: Fix typo. gcc/cp/ * parser.c: Fix comment typo. From-SVN: r136804 --- gcc/omp-low.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/omp-low.c') 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; -- cgit v1.2.1