summaryrefslogtreecommitdiff
path: root/gcc/cfg.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-07-29 14:52:00 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-07-29 14:52:00 +0000
commit738571e87c2c95ca446849e5aec56aa89f9c9b1e (patch)
treecf43d065d0664019b75751ffca6fa764ee244081 /gcc/cfg.c
parentde16fecdc0677b515301254c18aa0e2593a82579 (diff)
downloadgcc-738571e87c2c95ca446849e5aec56aa89f9c9b1e.tar.gz
* cfg.c, tree-complex.c, config/frv/frv.c, config/i386/i386.c:
Fix comment typos. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102555 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r--gcc/cfg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c
index 96441326ac6..c46ac0b88ee 100644
--- a/gcc/cfg.c
+++ b/gcc/cfg.c
@@ -926,7 +926,7 @@ scale_bbs_frequencies_int (basic_block *bbs, int nbbs, int num, int den)
if (num > den)
return;
/* Assume that the users are producing the fraction from frequencies
- that never grow far enought to risk arithmetic overflow. */
+ that never grow far enough to risk arithmetic overflow. */
gcc_assert (num < 65536);
for (i = 0; i < nbbs; i++)
{