aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/cfgcleanup.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 0b26459..de7731f 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2004-10-25 Ben Elliston <bje@au.ibm.com>
+
+ * cfgcleanup.c (outgoing_edges_match): Fix typo in dump output.
+
2004-10-23 Andrew Pinski <pinskia@physics.uc.edu>
* predict.c (predict_loops): Call scev_finalize instead of
diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c
index 8ac3405..ef8b50e 100644
--- a/gcc/cfgcleanup.c
+++ b/gcc/cfgcleanup.c
@@ -1335,7 +1335,7 @@ outgoing_edges_match (int mode, basic_block bb1, basic_block bb2)
{
if (dump_file)
fprintf (dump_file,
- "Outcomes of branch in bb %i and %i differs to much (%i %i)\n",
+ "Outcomes of branch in bb %i and %i differs too much (%i %i)\n",
bb1->index, bb2->index, b1->probability, prob2);
return false;