diff options
author | Stan Shebs <shebs@apple.com> | 2001-09-19 23:58:10 +0000 |
---|---|---|
committer | Stan Shebs <shebs@gcc.gnu.org> | 2001-09-19 23:58:10 +0000 |
commit | e3aafbad8771a52e23ca48f58c7d2ad35381be31 (patch) | |
tree | f8e80416030f54cd9849970e96b00acdff22f9e2 /gcc/alias.c | |
parent | 3d9339a9ca5de0b96db7c02b23b0b94656b9e1bf (diff) | |
download | gcc-e3aafbad8771a52e23ca48f58c7d2ad35381be31.zip gcc-e3aafbad8771a52e23ca48f58c7d2ad35381be31.tar.gz gcc-e3aafbad8771a52e23ca48f58c7d2ad35381be31.tar.bz2 |
alias.c: Fix typos in comments.
* alias.c: Fix typos in comments.
* sched-rgn.c (init_ready_list): Ditto.
* unwind-dw2.c (uw_frame_state_for): Ditto.
* unwind-dw2-fde.c (_Unwind_Find_FDE): Ditto.
* unwind.inc (_Unwind_RaiseException_Phase2): Ditto.
* config/rs6000/rs6000.c (rs6000_adjust_priority): Ditto.
From-SVN: r45698
Diffstat (limited to 'gcc/alias.c')
-rw-r--r-- | gcc/alias.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/alias.c b/gcc/alias.c index 61c1d8f..abb593a 100644 --- a/gcc/alias.c +++ b/gcc/alias.c @@ -59,7 +59,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 decendents, however, since we propagate all + past immediate descendents, however, since we propagate all grandchildren up one level. Alias set zero is implicitly a superset of all other alias sets. @@ -72,7 +72,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 decendents. So, if we have: + children, but, in fact, all descendents. So, if we have: struct T { struct S s; float f; } |