summaryrefslogtreecommitdiff
path: root/gcc/tree-parloops.c
diff options
context:
space:
mode:
authorTom de Vries <tom@codesourcery.com>2015-11-20 12:48:17 +0000
committerTom de Vries <vries@gcc.gnu.org>2015-11-20 12:48:17 +0000
commit430002b956a29c8dc6f3be66156ebcbd8f44dcb6 (patch)
tree9e7ffa6a0cda806f7b9b45aa710ccef54e7508df /gcc/tree-parloops.c
parente06b54c275f99dceff4f7c4afc1c97362ae2d17c (diff)
Fix typo and trailing whitespace in dump-file strings in parloops
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
Diffstat (limited to 'gcc/tree-parloops.c')
-rw-r--r--gcc/tree-parloops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-parloops.c b/gcc/tree-parloops.c
index 8d7912dc582..aca23704822 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)
{