* fold-const.c: Fix comment typos.

From-SVN: r35072
This commit is contained in:
Kazu Hirata 2000-07-17 08:24:48 +00:00 committed by Jeff Law
parent aae3f0dafd
commit f42ef510b3
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2000-07-17 Kazu Hirata <kazu@hxi.com>
* fold-const.c: Fix comment typos.
2000-07-16 Laurynas Biveinis <lauras@softhome.net>
* cppfiles.c (read_name_map): Set map_list_ptr->map_list_map to NULL.

View File

@ -3204,7 +3204,7 @@ simple_operand_p (exp)
try to change a logical combination of comparisons into a range test.
For example, both
X == 2 && X == 3 && X == 4 && X == 5
X == 2 || X == 3 || X == 4 || X == 5
and
X >= 2 && X <= 5
are converted to
@ -3299,7 +3299,7 @@ range_binop (code, type, arg0, upper0_p, arg1, upper1_p)
/* Given EXP, a logical expression, set the range it is testing into
variables denoted by PIN_P, PLOW, and PHIGH. Return the expression
actually being tested. *PLOW and *PHIGH will have be made the same type
actually being tested. *PLOW and *PHIGH will be made of the same type
as the returned expression. If EXP is not a comparison, we will most
likely not be returning a useful value and range. */
@ -3894,7 +3894,7 @@ fold_truthop (code, truth_type, lhs, rhs)
enum tree_code code;
tree truth_type, lhs, rhs;
{
/* If this is the "or" of two comparisons, we can do something if we
/* If this is the "or" of two comparisons, we can do something if
the comparisons are NE_EXPR. If this is the "and", we can do something
if the comparisons are EQ_EXPR. I.e.,
(a->b == 2 && a->c == 4) can become (a->new == NEW).