aboutsummaryrefslogtreecommitdiff
path: root/gcc/struct-equiv.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2007-02-18 00:52:51 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2007-02-18 00:52:51 +0000
commitea2c620c644121eb9596d47c182453475f5dc559 (patch)
treeb38a0a5dbb19ac45ec4d154b015e6872d5aa49c0 /gcc/struct-equiv.c
parentaabd86cb158b3da3e02f060cae2b3adc0dbda6dc (diff)
downloadgcc-ea2c620c644121eb9596d47c182453475f5dc559.zip
gcc-ea2c620c644121eb9596d47c182453475f5dc559.tar.gz
gcc-ea2c620c644121eb9596d47c182453475f5dc559.tar.bz2
cfgloop.c, [...]: Fix comment typos.
* cfgloop.c, config/alpha/alpha.c, config/bfin/bfin.c, config/i386/athlon.md, config/ia64/ia64.md, config/rs6000/rs6000.c, config/s390/s390.c, config/spu/spu.md, df-problems.c, df.h, fold-const.c, ipa-cp.c, ipa-inline.c, ipa-prop.h, see.c, struct-equiv.c, tree-inline.c, tree-ssa-loop-niter.c, tree-vect-analyze.c, tree-vect-transform.c: Fix comment typos. From-SVN: r122080
Diffstat (limited to 'gcc/struct-equiv.c')
-rw-r--r--gcc/struct-equiv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/struct-equiv.c b/gcc/struct-equiv.c
index e580b88..ce3efcd 100644
--- a/gcc/struct-equiv.c
+++ b/gcc/struct-equiv.c
@@ -344,7 +344,7 @@ note_local_live (struct equiv_info *info, rtx x, rtx y, int rvalue)
return x_change;
}
-/* Check if *XP is equivalent to Y. Until an an unreconcilable difference is
+/* Check if *XP is equivalent to Y. Until an unreconcilable difference is
found, use in-group changes with validate_change on *XP to make register
assignments agree. It is the (not necessarily direct) callers
responsibility to verify / confirm / cancel these changes, as appropriate.
@@ -570,7 +570,7 @@ rtx_equiv_p (rtx *xp, rtx y, int rvalue, struct equiv_info *info)
return false;
x_dest1 = XEXP (x, 0);
/* validate_change might have changed the destination. Put it back
- so that we can do a proper match for its role a an input. */
+ so that we can do a proper match for its role as an input. */
XEXP (x, 0) = x_dest0;
if (!rtx_equiv_p (&XEXP (x, 0), XEXP (y, 0), 1, info))
return false;