diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-04-22 16:19:56 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-04-22 16:19:56 +0000 |
commit | 66a4ad37311bcb31fe1e94d538ada0ad66a782a7 (patch) | |
tree | 0efb3b28172d148956909be1c89236b745c9a980 /gcc | |
parent | 9f9a713e7a5e6f6fdf6062d97f3b578484bba6af (diff) | |
download | gcc-66a4ad37311bcb31fe1e94d538ada0ad66a782a7.zip gcc-66a4ad37311bcb31fe1e94d538ada0ad66a782a7.tar.gz gcc-66a4ad37311bcb31fe1e94d538ada0ad66a782a7.tar.bz2 |
op-common.h, [...]: Fix comment typos.
* config/soft-fp/op-common.h, double-int.h, tree-ssa-dom.c:
Fix comment typos.
* doc/tm.texi: Fix a typo.
From-SVN: r113178
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/soft-fp/op-common.h | 2 | ||||
-rw-r--r-- | gcc/doc/tm.texi | 2 | ||||
-rw-r--r-- | gcc/double-int.h | 2 | ||||
-rw-r--r-- | gcc/tree-ssa-dom.c | 2 |
5 files changed, 10 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5a20827..bbbdaa4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2006-04-22 Kazu Hirata <kazu@codesourcery.com> + + * config/soft-fp/op-common.h, double-int.h, tree-ssa-dom.c: + Fix comment typos. + * doc/tm.texi: Fix a typo. + 2006-04-21 Geoffrey Keating <geoffk@apple.com> * dwarf2out.c (struct die_struct): Document that die_sib makes diff --git a/gcc/config/soft-fp/op-common.h b/gcc/config/soft-fp/op-common.h index 4ec7fad..372f69d 100644 --- a/gcc/config/soft-fp/op-common.h +++ b/gcc/config/soft-fp/op-common.h @@ -35,7 +35,7 @@ _FP_FRAC_DECL_##wc(X) /* - * Finish truely unpacking a native fp value by classifying the kind + * Finish truly unpacking a native fp value by classifying the kind * of fp value and normalizing both the exponent and the fraction. */ diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index 4392e42..aceebf6 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -9144,7 +9144,7 @@ such cases may improve things. @end defmac @deftypefn {Target Hook} int TARGET_MODE_REP_EXTENDED (enum machine_mode @var{mode}, enum machine_mode @var{rep_mode}) -The representation of an intergral mode can be such that the values +The representation of an integral mode can be such that the values are always extended to a wider integral mode. Return @code{SIGN_EXTEND} if values of @var{mode} are represented in sign-extended form to @var{rep_mode}. Return @code{UNKNOWN} diff --git a/gcc/double-int.h b/gcc/double-int.h index c6113f3..f37bcb2 100644 --- a/gcc/double-int.h +++ b/gcc/double-int.h @@ -44,7 +44,7 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA ??? The components of double_int differ in signedness mostly for historical reasons (they replace an older structure used to represent - numbers with precision wigher than HOST_WIDE_INT). It might be less + numbers with precision higher than HOST_WIDE_INT). It might be less confusing to have them both signed or both unsigned. */ typedef struct diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c index d99d6a0..2777d55 100644 --- a/gcc/tree-ssa-dom.c +++ b/gcc/tree-ssa-dom.c @@ -2439,7 +2439,7 @@ eliminate_degenerate_phis (void) A set bit indicates that the statement or PHI node which defines the SSA_NAME should be (re)examined to determine if - it has become a degenerate PHI or trival const/copy propagation + it has become a degenerate PHI or trivial const/copy propagation opportunity. Experiments have show we generally get better compilation |