diff options
author | Ben Elliston <bje@au.ibm.com> | 2004-10-25 00:29:02 +0000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2004-10-25 10:29:02 +1000 |
commit | a304f64e1687b22033f2008c3c530dee155a5c62 (patch) | |
tree | 5b55480a3c8a3c141800b643f8ef0c5d493b8adb /gcc/cfgcleanup.c | |
parent | f3515059ee5d813c8c6917e06a82a1fa17037e86 (diff) | |
download | gcc-a304f64e1687b22033f2008c3c530dee155a5c62.zip gcc-a304f64e1687b22033f2008c3c530dee155a5c62.tar.gz gcc-a304f64e1687b22033f2008c3c530dee155a5c62.tar.bz2 |
* cfgcleanup.c (outgoing_edges_match): Fix typo in dump output.
From-SVN: r89518
Diffstat (limited to 'gcc/cfgcleanup.c')
-rw-r--r-- | gcc/cfgcleanup.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |