omp-low.c (extract_omp_for_data): Fix comment typo.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 15 Jun 2008 09:55:56 +0000 (09:55 +0000)
committerRalf Wildenhues <rwild@gcc.gnu.org>
Sun, 15 Jun 2008 09:55:56 +0000 (09:55 +0000)
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/ChangeLog
gcc/c.opt
gcc/cp/ChangeLog
gcc/cp/parser.c
gcc/omp-low.c

index 2d34139b188cd5f2cd5fc1d1dd7368cd406af1b6..fa92fdbf06516ac9a3cfae03b45934c289ca935f 100644 (file)
@@ -1,3 +1,8 @@
+2008-06-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       * omp-low.c (extract_omp_for_data): Fix comment typo.
+       * c.opt: Fix typo.
+
 2008-06-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        * doc/sourcebuild.texi (Config Fragments): Remove obsolete
index 9669f2ca6ba36eb0d1e1b2c714aa18d010610c5f..30782d4f3a72d22f8a2380da03d2141e3e4034a9 100644 (file)
--- a/gcc/c.opt
+++ b/gcc/c.opt
@@ -679,7 +679,7 @@ Enable OpenMP
 
 foperator-names
 C++ ObjC++
-Recognize C++ kewords like \"compl\" and \"xor\"
+Recognize C++ keywords like \"compl\" and \"xor\"
 
 foptional-diags
 C++ ObjC++
index 0ff9cf447bb668f06135c2726c19e8876edb6362..bd2c0dec2feb1fef2fe2f7c65927c5005f078956 100644 (file)
@@ -1,3 +1,7 @@
+2008-06-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       * parser.c: Fix comment typo.
+
 2008-06-14  Simon Martin  <simartin@users.sourceforge.net>
 
        PR c++/35320
index 467a603f99232def5ffdcc67a87315f64f339ba4..a53c0293b7abc15a72b526256b0cf434476af5b4 100644 (file)
@@ -20423,7 +20423,7 @@ cp_parser_omp_for_incr (cp_parser *parser, tree decl)
   return build2 (MODIFY_EXPR, TREE_TYPE (decl), decl, rhs);
 }
 
-/* Parse the restricted form of the for statment allowed by OpenMP.  */
+/* Parse the restricted form of the for statement allowed by OpenMP.  */
 
 static tree
 cp_parser_omp_for_loop (cp_parser *parser, tree clauses, tree *par_clauses)
index e51369aaffefbc1458b79c1c49083d679a76ebcb..09b7260a66e7a77368b0f9689b9f5bb4329db537 100644 (file)
@@ -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;