diff options
author | Joseph Myers <jsm28@gcc.gnu.org> | 2001-11-04 02:51:28 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2001-11-04 02:51:28 +0000 |
commit | f5143c46a9cc072c52820b9f903055b153956e77 (patch) | |
tree | e032f0934bde28fa98892ee1930ec178cedbfe6a /gcc/alias.c | |
parent | c3fb23f4412328c8079c4990059f7217302ea0d4 (diff) | |
download | gcc-f5143c46a9cc072c52820b9f903055b153956e77.tar.gz |
ChangeLog.2, [...]: Fix spelling errors.
* ChangeLog.2, ChangeLog.4, ChangeLog.5, ChangeLog,
FSFChangeLog.10, FSFChangeLog.11, alias.c, attribs.c,
caller-save.c, calls.c, cfg.c, cfganal.c, cfgcleanup.c, cfgrtl.c,
cppmacro.c, fold-const.c, ifcvt.c, local-alloc.c, profile.c,
sched-int.h, toplev.c, config/alpha/alpha.c,
config/alpha/alpha.md, config/c4x/c4x.h, config/cris/cris.h,
config/cris/cris.md, config/i370/i370.md, config/i386/i386.c,
config/i386/i386.h, config/i386/i386.md, config/i386/xm-djgpp.h,
config/ia64/ia64.c, config/m68hc11/m68hc11.c, config/m68k/m68k.md,
config/mcore/mcore.h, config/mmix/mmix.c, config/ns32k/ns32k.h,
config/ns32k/ns32k.md, config/rs6000/rs6000.c,
config/rs6000/sysv4.h, config/sh/sh.md: Fix spelling errors.
From-SVN: r46760
Diffstat (limited to 'gcc/alias.c')
-rw-r--r-- | gcc/alias.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/alias.c b/gcc/alias.c index 2581b2acb1d..68b80b8d6d3 100644 --- a/gcc/alias.c +++ b/gcc/alias.c @@ -341,7 +341,7 @@ objects_must_conflict_p (t1, t2) /* T is an expression with pointer type. Find the DECL on which this expression is based. (For example, in `a[i]' this would be `a'.) If there is no such DECL, or a unique decl cannot be determined, - NULL_TREE is retured. */ + NULL_TREE is returned. */ static tree find_base_decl (t) @@ -1253,7 +1253,7 @@ find_base_term (x) rtx tmp1 = XEXP (x, 0); rtx tmp2 = XEXP (x, 1); - /* This is a litle bit tricky since we have to determine which of + /* This is a little bit tricky since we have to determine which of the two operands represents the real base address. Otherwise this routine may return the index register instead of the base register. @@ -1816,7 +1816,7 @@ true_dependence (mem, mem_mode, x, varies) if (aliases_everything_p (x)) return 1; - /* We cannot use aliases_everyting_p to test MEM, since we must look + /* We cannot use aliases_everything_p to test MEM, since we must look at MEM_MODE, rather than GET_MODE (MEM). */ if (mem_mode == QImode || GET_CODE (mem_addr) == AND) return 1; @@ -1831,7 +1831,7 @@ true_dependence (mem, mem_mode, x, varies) } /* Canonical true dependence: X is read after store in MEM takes place. - Variant of true_dependece which assumes MEM has already been + Variant of true_dependence which assumes MEM has already been canonicalized (hence we no longer do that here). The mem_addr argument has been added, since true_dependence computed this value prior to canonicalizing. */ @@ -1873,7 +1873,7 @@ canon_true_dependence (mem, mem_mode, mem_addr, x, varies) if (aliases_everything_p (x)) return 1; - /* We cannot use aliases_everyting_p to test MEM, since we must look + /* We cannot use aliases_everything_p to test MEM, since we must look at MEM_MODE, rather than GET_MODE (MEM). */ if (mem_mode == QImode || GET_CODE (mem_addr) == AND) return 1; @@ -2231,7 +2231,7 @@ init_alias_analysis () start counting from zero each iteration of the loop. */ unique_id = 0; - /* We're at the start of the funtion each iteration through the + /* We're at the start of the function each iteration through the loop, so we're copying arguments. */ copying_arguments = 1; @@ -2273,7 +2273,7 @@ init_alias_analysis () rtx note, set; #if defined (HAVE_prologue) || defined (HAVE_epilogue) - /* The prologue/epilouge insns are not threaded onto the + /* The prologue/epilogue insns are not threaded onto the insn chain until after reload has completed. Thus, there is no sense wasting time checking if INSN is in the prologue/epilogue until after reload has completed. */ |