summaryrefslogtreecommitdiff
path: root/gcc/alias.c
diff options
context:
space:
mode:
authorshebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4>2001-09-19 23:58:10 +0000
committershebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4>2001-09-19 23:58:10 +0000
commitb9fe4edd26e9fcdaa29da81e4e06ed5add2334de (patch)
treef8e80416030f54cd9849970e96b00acdff22f9e2 /gcc/alias.c
parent229db60e872ff7fab3b9ad02145902d6ddabd9e3 (diff)
downloadgcc-b9fe4edd26e9fcdaa29da81e4e06ed5add2334de.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45698 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/alias.c')
-rw-r--r--gcc/alias.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/alias.c b/gcc/alias.c
index 61c1d8fa2ad..abb593a6d9d 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; }