aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Elliston <bje@gcc.gnu.org>2004-10-25 14:23:49 +1000
committerBen Elliston <bje@gcc.gnu.org>2004-10-25 14:23:49 +1000
commitf47b662edbdacfa02da3218424319385e755a671 (patch)
tree240086c519704940fcae8c5b561f7ccadb0f555b
parent04972521bbb25dc54d3b796e2710c47699338e56 (diff)
downloadgcc-f47b662edbdacfa02da3218424319385e755a671.zip
gcc-f47b662edbdacfa02da3218424319385e755a671.tar.gz
gcc-f47b662edbdacfa02da3218424319385e755a671.tar.bz2
* cfgcleanup.c (outgoing_edges_match): Fix typo in dump output.
From-SVN: r89521
-rw-r--r--gcc/cfgcleanup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c
index ef8b50e..f7bf1eb 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 too much (%i %i)\n",
+ "Outcomes of branch in bb %i and %i differ too much (%i %i)\n",
bb1->index, bb2->index, b1->probability, prob2);
return false;