From: Kazu Hirata Date: Tue, 30 Jul 2002 16:42:05 +0000 (+0000) Subject: fold-const.c: Fix comment typos. X-Git-Tag: releases/gcc-3.3.0~3554 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=68e82b83349899173cd32116c387c7b56c917341;p=thirdparty%2Fgcc.git fold-const.c: Fix comment typos. * fold-const.c: Fix comment typos. * gcse.c: Likewise. * reload1.c: Likewise. From-SVN: r55876 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1e75f1e29717..42ffe447367b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2002-07-30 Kazu Hirata + + * fold-const.c: Fix comment typos. + * gcse.c: Likewise. + * reload1.c: Likewise. + 2002-07-29 Aldy Hernandez * config/rs6000/rs6000.md: Disallow CCEQ compare with crnor/crnot diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 49c53cc0857d..7751e6587018 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; diff --git a/gcc/gcse.c b/gcc/gcse.c index 8791cb24fcf5..3ad8a750366a 100644 --- a/gcc/gcse.c +++ b/gcc/gcse.c @@ -5850,7 +5850,7 @@ static sbitmap *hoist_exprs; dominance_info dominators; /* ??? We could compute post dominators and run this algorithm in - reverse to to perform tail merging, doing so would probably be + reverse to perform tail merging, doing so would probably be more effective than the tail merging code in jump.c. It's unclear if tail merging could be run in parallel with diff --git a/gcc/reload1.c b/gcc/reload1.c index 0c23c24ee9de..894df877046d 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -4321,7 +4321,7 @@ clear_reload_reg_in_use (regno, opnum, type, mode) abort (); } /* We resolve conflicts with remaining reloads of the same type by - excluding the intervals of of reload registers by them from the + excluding the intervals of reload registers by them from the interval of freed reload registers. Since we only keep track of one set of interval bounds, we might have to exclude somewhat more than what would be necessary if we used a HARD_REG_SET here.