tree-into-ssa (update_ssa): Avoid trailing whitespace in dump_file.

2012-02-23  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>

	* tree-into-ssa (update_ssa): Avoid trailing whitespace in
	dump_file.
	* tree-ssa-sccvn.c (print_scc): Ditto.

From-SVN: r184544
parent 6a953a91
2012-02-23 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
* tree-into-ssa (update_ssa): Avoid trailing whitespace in
dump_file.
* tree-ssa-sccvn.c (print_scc): Ditto.
2012-02-23 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
* doc/passes.texi (Full redundancy elimination): Fix typo.
2012-02-23 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
......
......@@ -3519,9 +3519,9 @@ update_ssa (unsigned update_flags)
if (dump_flags & TDF_DETAILS)
{
fprintf (dump_file, "Affected blocks: ");
fprintf (dump_file, "Affected blocks:");
EXECUTE_IF_SET_IN_BITMAP (blocks_to_update, 0, i, bi)
fprintf (dump_file, "%u ", i);
fprintf (dump_file, " %u", i);
fprintf (dump_file, "\n");
}
......
......@@ -2462,11 +2462,11 @@ print_scc (FILE *out, VEC (tree, heap) *scc)
tree var;
unsigned int i;
fprintf (out, "SCC consists of: ");
fprintf (out, "SCC consists of:");
FOR_EACH_VEC_ELT (tree, scc, i, var)
{
print_generic_expr (out, var, 0);
fprintf (out, " ");
print_generic_expr (out, var, 0);
}
fprintf (out, "\n");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment