aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorPrathamesh Kulkarni <prathamesh.kulkarni@linaro.org>2016-10-03 19:42:55 +0000
committerPrathamesh Kulkarni <prathamesh3492@gcc.gnu.org>2016-10-03 19:42:55 +0000
commit7d521283740c6dc4c4c609cb092d40c3dedefd8e (patch)
tree1ce5910796c66319a47ba97c7a05195560135515 /gcc
parentf05796ba9ba6f884adc467f09d39dae23fed9bc8 (diff)
downloadgcc-7d521283740c6dc4c4c609cb092d40c3dedefd8e.zip
gcc-7d521283740c6dc4c4c609cb092d40c3dedefd8e.tar.gz
gcc-7d521283740c6dc4c4c609cb092d40c3dedefd8e.tar.bz2
ipa-cp.c (propagate_bits_accross_jump_function): Introduce space between callee name and param in dump message in call to fprintf.
2016-10-03 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> * ipa-cp.c (propagate_bits_accross_jump_function): Introduce space between callee name and param in dump message in call to fprintf. From-SVN: r240730
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/ipa-cp.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ba56e63..70f8d9a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2016-10-03 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
+
+ * ipa-cp.c (propagate_bits_accross_jump_function): Introduce space
+ between callee name and param in dump message in call to fprintf.
+
2016-10-03 Jeff Law <law@redhat.com>
PR tree-optimization/71550
diff --git a/gcc/ipa-cp.c b/gcc/ipa-cp.c
index 95a2a1e..7380b2a 100644
--- a/gcc/ipa-cp.c
+++ b/gcc/ipa-cp.c
@@ -1984,7 +1984,7 @@ propagate_bits_accross_jump_function (cgraph_edge *cs, int idx, ipa_jump_func *j
{
if (dump_file && (dump_flags & TDF_DETAILS))
fprintf (dump_file, "Setting dest_lattice to bottom, because"
- "param %i type is NULL for %s\n", idx,
+ " param %i type is NULL for %s\n", idx,
cs->callee->name ());
return dest_lattice->set_to_bottom ();