diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2007-03-17 17:44:02 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2007-03-17 17:44:02 +0000 |
commit | 44c7bd63b6cb84d93f1408574bc2fb74179ba445 (patch) | |
tree | 53acd4868efeee02477736aa3dc09717ec6a8df9 /gcc/predict.c | |
parent | a757b5c594279e7e3a4a51bf5748dbd0785a3fbc (diff) | |
download | gcc-44c7bd63b6cb84d93f1408574bc2fb74179ba445.zip gcc-44c7bd63b6cb84d93f1408574bc2fb74179ba445.tar.gz gcc-44c7bd63b6cb84d93f1408574bc2fb74179ba445.tar.bz2 |
arm.c, [...]: Fix comment typos.
* config/arm/arm.c, config/arm/thumb2.md, config/m68k/m68k.c,
config/spu/spu.c, omega.h, passes.c, predict.c: Fix comment
typos.
* doc/cpp.texi, doc/extend.texi, doc/invoke.texi: Fix typos.
Follow spelling conventions.
From-SVN: r123025
Diffstat (limited to 'gcc/predict.c')
-rw-r--r-- | gcc/predict.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/predict.c b/gcc/predict.c index f8a6a11..097cfb8 100644 --- a/gcc/predict.c +++ b/gcc/predict.c @@ -1311,10 +1311,10 @@ tree_estimate_probability (void) care for error returns and other cases are often used for fast paths through function. - Since we've already removed the return statments, we are + Since we've already removed the return statements, we are looking for CFG like: - if (conditoinal) + if (conditional) { .. goto return_block |