diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-07-30 16:42:05 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-07-30 16:42:05 +0000 |
commit | 68e82b83349899173cd32116c387c7b56c917341 (patch) | |
tree | 62810ecc3fe20d29c3376905a31212e146a1d5df /gcc/fold-const.c | |
parent | fe6b547a28692c1cbc81bc64aa3ed4f32a2083b8 (diff) | |
download | gcc-68e82b83349899173cd32116c387c7b56c917341.zip gcc-68e82b83349899173cd32116c387c7b56c917341.tar.gz gcc-68e82b83349899173cd32116c387c7b56c917341.tar.bz2 |
fold-const.c: Fix comment typos.
* fold-const.c: Fix comment typos.
* gcse.c: Likewise.
* reload1.c: Likewise.
From-SVN: r55876
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 49c53cc..7751e65 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -2716,7 +2716,7 @@ sign_bit_p (exp, val) int width; tree t; - /* Tree EXP must have a integral type. */ + /* Tree EXP must have an integral type. */ t = TREE_TYPE (exp); if (! INTEGRAL_TYPE_P (t)) return NULL_TREE; |