aboutsummaryrefslogtreecommitdiff
path: root/gcc/omp-grid.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2017-02-13 22:56:13 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2017-02-13 22:56:13 +0100
commitaa326bfb90c7ad2bf16b9582dac7e3de102ca6c5 (patch)
tree136fa8cc59c566f2e3fee968355d8cc884994b92 /gcc/omp-grid.c
parent3ae481772f5ac234fad7028586f2c8559c707cb4 (diff)
downloadgcc-aa326bfb90c7ad2bf16b9582dac7e3de102ca6c5.zip
gcc-aa326bfb90c7ad2bf16b9582dac7e3de102ca6c5.tar.gz
gcc-aa326bfb90c7ad2bf16b9582dac7e3de102ca6c5.tar.bz2
cprop.c (cprop_jump): Add missing space in string literal.
* cprop.c (cprop_jump): Add missing space in string literal. * tree-ssa-structalias.c (rewrite_constraints): Likewise. (get_constraint_for_component_ref): Likewise. * df-core.c (df_worklist_dataflow_doublequeue): Likewise. * tree-outof-ssa.c (insert_partition_copy_on_edge): Likewise. * lra-constraints.c (process_alt_operands): Likewise. * ipa-inline.c (inline_small_functions): Likewise. * tree-ssa-sccvn.c (visit_reference_op_store): Likewise. * cgraph.c (cgraph_edge::redirect_call_stmt_to_callee): Likewise. * trans-mem.c (diagnose_tm_1_op): Likewise. * omp-grid.c (grid_find_single_omp_among_assignments): Likewise. (grid_parallel_clauses_gridifiable): Likewise. c/ * c-parser.c (c_parser_oacc_declare): Add missing space in diagnostics. fortran/ * trans-expr.c (gfc_conv_substring): Add missing space in diagnostics. From-SVN: r245409
Diffstat (limited to 'gcc/omp-grid.c')
-rw-r--r--gcc/omp-grid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/omp-grid.c b/gcc/omp-grid.c
index 127f514..a7b6f60 100644
--- a/gcc/omp-grid.c
+++ b/gcc/omp-grid.c
@@ -232,7 +232,7 @@ grid_find_single_omp_among_assignments (gimple_seq seq, grid_prop *grid,
if (!ret && dump_enabled_p ())
dump_printf_loc (MSG_MISSED_OPTIMIZATION, grid->target_loc,
GRID_MISSED_MSG_PREFIX "%s construct does not contain"
- "any other OpenMP construct\n", name);
+ " any other OpenMP construct\n", name);
return ret;
}
else
@@ -309,7 +309,7 @@ grid_parallel_clauses_gridifiable (gomp_parallel *par, location_t tloc)
if (dump_enabled_p ())
{
dump_printf_loc (MSG_MISSED_OPTIMIZATION, tloc,
- GRID_MISSED_MSG_PREFIX "a reduction clause"
+ GRID_MISSED_MSG_PREFIX "a reduction clause "
"is present\n ");
dump_printf_loc (MSG_NOTE, gimple_location (par),
"Parallel construct has a reduction clause\n");