]> gcc.gnu.org Git - gcc.git/commitdiff
Fix typo and trailing whitespace in dump-file strings in parloops
authorTom de Vries <tom@codesourcery.com>
Fri, 20 Nov 2015 12:48:17 +0000 (12:48 +0000)
committerTom de Vries <vries@gcc.gnu.org>
Fri, 20 Nov 2015 12:48:17 +0000 (12:48 +0000)
2015-11-20  Tom de Vries  <tom@codesourcery.com>

* tree-parloops.c (build_new_reduction): Fix trailing whitespace in
dump-file string.
(try_create_reduction_list): Same.  Fix typo in dump-file string.

From-SVN: r230655

gcc/ChangeLog
gcc/tree-parloops.c

index b94c81200ec853f915fab0ccad25d845f27956c6..eae42df47e2ea5b5ced09cfc1762fbb5090ccbe9 100644 (file)
@@ -1,3 +1,9 @@
+2015-11-20  Tom de Vries  <tom@codesourcery.com>
+
+       * tree-parloops.c (build_new_reduction): Fix trailing whitespace in
+       dump-file string.
+       (try_create_reduction_list): Same.  Fix typo in dump-file string.
+
 2015-11-20  Eric Botcazou  <ebotcazou@adacore.com>
 
        * doc/md.texi (Standard Names): Move entry for addptr3 around,
index 8d7912dc5821fa45aea0ebc86d3776237e382d42..aca2370482231acebeebb879b5087bf2e84e9114 100644 (file)
@@ -2383,7 +2383,7 @@ build_new_reduction (reduction_info_table_type *reduction_list,
   if (dump_file && (dump_flags & TDF_DETAILS))
     {
       fprintf (dump_file,
-              "Detected reduction. reduction stmt is: \n");
+              "Detected reduction. reduction stmt is:\n");
       print_gimple_stmt (dump_file, reduc_stmt, 0, 0);
       fprintf (dump_file, "\n");
     }
@@ -2564,7 +2564,7 @@ try_create_reduction_list (loop_p loop,
              print_generic_expr (dump_file, val, 0);
              fprintf (dump_file, " used outside loop\n");
              fprintf (dump_file,
-                      "  checking if it a part of reduction pattern:  \n");
+                      "  checking if it is part of reduction pattern:\n");
            }
          if (reduction_list->elements () == 0)
            {
This page took 0.109228 seconds and 5 git commands to generate.