Commit f47b662e by Ben Elliston

* cfgcleanup.c (outgoing_edges_match): Fix typo in dump output.

From-SVN: r89521
parent 04972521
...@@ -1335,7 +1335,7 @@ outgoing_edges_match (int mode, basic_block bb1, basic_block bb2) ...@@ -1335,7 +1335,7 @@ outgoing_edges_match (int mode, basic_block bb1, basic_block bb2)
{ {
if (dump_file) if (dump_file)
fprintf (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); bb1->index, bb2->index, b1->probability, prob2);
return false; return false;
......
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