aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-vrp.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-04-09 16:43:43 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-04-09 16:43:43 +0000
commitf3b569ca7e724b2fc9b8393af5ede3ab9e8a46ea (patch)
tree01d7f445c0b42a47b3a2d065df15bc21f86579b3 /gcc/tree-vrp.c
parent7b0cab995daec07d1fddae14c57918ae0c30fb21 (diff)
downloadgcc-f3b569ca7e724b2fc9b8393af5ede3ab9e8a46ea.zip
gcc-f3b569ca7e724b2fc9b8393af5ede3ab9e8a46ea.tar.gz
gcc-f3b569ca7e724b2fc9b8393af5ede3ab9e8a46ea.tar.bz2
dominance.c, [...]: Fix comment typos.
* dominance.c, gthr-win32.h, reg-stack.c, tree-ssa-copy.c, tree-ssa-operands.c, tree-ssa.c, tree-vrp.c, varasm.c, config/alpha/alpha.c, config/arm/arm.c, config/m32r/m32r.h, config/rs6000/predicates.md: Fix comment typos. From-SVN: r97904
Diffstat (limited to 'gcc/tree-vrp.c')
-rw-r--r--gcc/tree-vrp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-vrp.c b/gcc/tree-vrp.c
index e4adcfa..3a3260a 100644
--- a/gcc/tree-vrp.c
+++ b/gcc/tree-vrp.c
@@ -2000,7 +2000,7 @@ vrp_meet (value_range *vr0, value_range *vr1)
if (compare_values (vr0->min, vr1->min) == 1)
min = vr1->min;
- /* The upper limit of the new range is the maximium of the
+ /* The upper limit of the new range is the maximum of the
two ranges. */
if (compare_values (vr0->max, vr1->max) == -1)
max = vr1->max;