diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-01-18 02:26:43 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-01-18 02:26:43 +0000 |
commit | 95bd1dd72f8e33c77da74e7e6707f206784f6b15 (patch) | |
tree | 6a219732ec330734a0ab46ead554f3e3bd32ba25 /gcc/alias.c | |
parent | d5840e09def0a9a4efbcc31ae5bf30b9761335bd (diff) | |
download | gcc-95bd1dd72f8e33c77da74e7e6707f206784f6b15.zip gcc-95bd1dd72f8e33c77da74e7e6707f206784f6b15.tar.gz gcc-95bd1dd72f8e33c77da74e7e6707f206784f6b15.tar.bz2 |
alias.c: Fix comment typos.
* alias.c: Fix comment typos.
* basic-block.h: Likewise.
* c-common.c: Likewise.
* c-common.h: Likewise.
* c-decl.c: Likewise.
* c-opts.c: Likewise.
* c-pragma.c: Likewise.
* c-pretty-print.h: Likewise.
* cfg.c: Likewise.
* cfganal.c: Likewise.
* cfgbuild.c: Likewise.
* cfgcleanup.c: Likewise.
* cfglayout.c: Likewise.
* cfgrtl.c: Likewise.
* convert.c: Likewise.
* cpphash.h: Likewise.
* cpplex.c: Likewise.
* cpplib.h: Likewise.
* df.h: Likewise.
* diagnostic.c: Likewise.
* diagnostic.h: Likewise.
* dwarf2.h: Likewise.
From-SVN: r61462
Diffstat (limited to 'gcc/alias.c')
-rw-r--r-- | gcc/alias.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/alias.c b/gcc/alias.c index ffd4991..23f4134 100644 --- a/gcc/alias.c +++ b/gcc/alias.c @@ -64,7 +64,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA To see whether two alias sets can point to the same memory, we must see if either alias set is a subset of the other. We need not trace - past immediate descendents, however, since we propagate all + past immediate descendants, however, since we propagate all grandchildren up one level. Alias set zero is implicitly a superset of all other alias sets. @@ -77,7 +77,7 @@ typedef struct alias_set_entry HOST_WIDE_INT alias_set; /* The children of the alias set. These are not just the immediate - children, but, in fact, all descendents. So, if we have: + children, but, in fact, all descendants. So, if we have: struct T { struct S s; float f; } @@ -1953,7 +1953,7 @@ adjust_offset_for_component_ref (x, offset) return GEN_INT (ioffset); } -/* Return nonzero if we can deterimine the exprs corresponding to memrefs +/* Return nonzero if we can determine the exprs corresponding to memrefs X and Y and they do not overlap. */ static int |