diff options
author | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2012-02-24 10:39:38 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2012-02-24 10:39:38 +0100 |
commit | 0eb09f3120838e6b0d02223f5c6ae96f808ec327 (patch) | |
tree | b9fd9ea4911f7d349076afc0e04f01de8079f398 | |
parent | 6a953a91ba12eea8b183639623356096a93d4d34 (diff) | |
download | gcc-0eb09f3120838e6b0d02223f5c6ae96f808ec327.zip gcc-0eb09f3120838e6b0d02223f5c6ae96f808ec327.tar.gz gcc-0eb09f3120838e6b0d02223f5c6ae96f808ec327.tar.bz2 |
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
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/tree-into-ssa.c | 4 | ||||
-rw-r--r-- | gcc/tree-ssa-sccvn.c | 4 |
3 files changed, 10 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d0d7b6d..43ac703 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 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> diff --git a/gcc/tree-into-ssa.c b/gcc/tree-into-ssa.c index 7eaed2a..6ca52c1 100644 --- a/gcc/tree-into-ssa.c +++ b/gcc/tree-into-ssa.c @@ -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"); } diff --git a/gcc/tree-ssa-sccvn.c b/gcc/tree-ssa-sccvn.c index fdebe47..ddb1ba6 100644 --- a/gcc/tree-ssa-sccvn.c +++ b/gcc/tree-ssa-sccvn.c @@ -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"); } |