diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2007-05-26 13:00:47 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2007-05-26 13:00:47 +0000 |
commit | 110abdbc6877d03e991d8d2eb03d479db1bab8e2 (patch) | |
tree | bf7ffb2b31635e32954ef15161507e715433586b /gcc/tree-vrp.c | |
parent | 4dad0aca146f96888dda601263e31f8621de1bae (diff) | |
download | gcc-110abdbc6877d03e991d8d2eb03d479db1bab8e2.zip gcc-110abdbc6877d03e991d8d2eb03d479db1bab8e2.tar.gz gcc-110abdbc6877d03e991d8d2eb03d479db1bab8e2.tar.bz2 |
i386.c, [...]: Fix comment typos.
* config/i386/i386.c, config/pa/pa.c, config/spu/spu.c,
df-problems.c, df-scan.c, domwalk.c, ebitmap.c, ebitmap.h,
fold-const.c, gcc.c, ipa-type-escape.c, omega.c, omega.h,
tree-ssa-coalesce.c, tree-ssa-live.c, tree-ssa-structalias.c,
tree-vrp.c: Fix comment typos. Follow spelling conventions.
* doc/tm.texi: Follow spelling conventions.
From-SVN: r125090
Diffstat (limited to 'gcc/tree-vrp.c')
-rw-r--r-- | gcc/tree-vrp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-vrp.c b/gcc/tree-vrp.c index b5654f6..c32c907 100644 --- a/gcc/tree-vrp.c +++ b/gcc/tree-vrp.c @@ -387,7 +387,7 @@ set_value_range_to_value (value_range_t *vr, tree val, bitmap equiv) } /* Set value range VR to a non-negative range of type TYPE. - OVERFLOW_INFINITY indicates whether to use a overflow infinity + OVERFLOW_INFINITY indicates whether to use an overflow infinity rather than TYPE_MAX_VALUE; this should be true if we determine that the range is nonnegative based on the assumption that signed overflow does not occur. */ @@ -607,7 +607,7 @@ symbolic_range_p (value_range_t *vr) || !is_gimple_min_invariant (vr->max)); } -/* Return true if value range VR uses a overflow infinity. */ +/* Return true if value range VR uses an overflow infinity. */ static inline bool overflow_infinity_range_p (value_range_t *vr) |