From: vries Date: Fri, 20 Nov 2015 12:48:17 +0000 (+0000) Subject: Fix typo and trailing whitespace in dump-file strings in parloops X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a7837a16e783102a6a20c0ead1c65e4de631b4e;p=thirdparty%2Fgcc.git Fix typo and trailing whitespace in dump-file strings in parloops 2015-11-20 Tom de Vries * tree-parloops.c (build_new_reduction): Fix trailing whitespace in dump-file string. (try_create_reduction_list): Same. Fix typo in dump-file string. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230655 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b94c81200ec8..eae42df47e2e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2015-11-20 Tom de Vries + + * 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 * doc/md.texi (Standard Names): Move entry for addptr3 around, diff --git a/gcc/tree-parloops.c b/gcc/tree-parloops.c index 8d7912dc5821..aca237048223 100644 --- a/gcc/tree-parloops.c +++ b/gcc/tree-parloops.c @@ -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) {