aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Shebs <shebs@apple.com>2001-09-19 23:58:10 +0000
committerStan Shebs <shebs@gcc.gnu.org>2001-09-19 23:58:10 +0000
commite3aafbad8771a52e23ca48f58c7d2ad35381be31 (patch)
treef8e80416030f54cd9849970e96b00acdff22f9e2
parent3d9339a9ca5de0b96db7c02b23b0b94656b9e1bf (diff)
downloadgcc-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
-rw-r--r--gcc/ChangeLog9
-rw-r--r--gcc/alias.c4
-rw-r--r--gcc/config/rs6000/rs6000.c4
-rw-r--r--gcc/sched-rgn.c2
-rw-r--r--gcc/unwind-dw2-fde.c2
-rw-r--r--gcc/unwind-dw2.c2
-rw-r--r--gcc/unwind.inc2
7 files changed, 17 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 22d2074..101d40a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,12 @@
+2001-09-19 Stan Shebs <shebs@apple.com>
+
+ * 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.
+
2001-09-19 Richard Henderson <rth@redhat.com>
* cfg.c (force_nonfallthru_and_redirect): Handle redirecting
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; }
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
index 0fc0446..3cbb3aa 100644
--- a/gcc/config/rs6000/rs6000.c
+++ b/gcc/config/rs6000/rs6000.c
@@ -7986,10 +7986,10 @@ rs6000_adjust_priority (insn, priority)
rtx insn ATTRIBUTE_UNUSED;
int priority;
{
- /* On machines (like the 750) which have asymetric integer units, where one
+ /* On machines (like the 750) which have asymmetric integer units, where one
integer unit can do multiply and divides and the other can't, reduce the
priority of multiply/divide so it is scheduled before other integer
- operationss. */
+ operations. */
#if 0
if (! INSN_P (insn))
diff --git a/gcc/sched-rgn.c b/gcc/sched-rgn.c
index 7df0997..7a9f9f7 100644
--- a/gcc/sched-rgn.c
+++ b/gcc/sched-rgn.c
@@ -2148,7 +2148,7 @@ init_ready_list (ready)
{
rtx next;
- /* Note that we havn't squirrled away the notes for
+ /* Note that we havn't squirreled away the notes for
blocks other than the current. So if this is a
speculative insn, NEXT might otherwise be a note. */
next = next_nonnote_insn (insn);
diff --git a/gcc/unwind-dw2-fde.c b/gcc/unwind-dw2-fde.c
index 5085119..f2c3425 100644
--- a/gcc/unwind-dw2-fde.c
+++ b/gcc/unwind-dw2-fde.c
@@ -942,7 +942,7 @@ _Unwind_Find_FDE (void *pc, struct dwarf_eh_bases *bases)
__gthread_mutex_lock (&object_mutex);
/* Linear search through the classified objects, to find the one
- containing the pc. Note that pc_begin is sorted decending, and
+ containing the pc. Note that pc_begin is sorted descending, and
we expect objects to be non-overlapping. */
for (ob = seen_objects; ob; ob = ob->next)
if (pc >= ob->pc_begin)
diff --git a/gcc/unwind-dw2.c b/gcc/unwind-dw2.c
index d4ef698..e013ce6 100644
--- a/gcc/unwind-dw2.c
+++ b/gcc/unwind-dw2.c
@@ -892,7 +892,7 @@ uw_frame_state_for (struct _Unwind_Context *context, _Unwind_FrameState *fs)
{
/* Couldn't find frame unwind info for this function. Try a
target-specific fallback mechanism. This will necessarily
- not profide a personality routine or LSDA. */
+ not provide a personality routine or LSDA. */
#ifdef MD_FALLBACK_FRAME_STATE_FOR
MD_FALLBACK_FRAME_STATE_FOR (context, fs, success);
return _URC_END_OF_STACK;
diff --git a/gcc/unwind.inc b/gcc/unwind.inc
index bd867e6..f00441e 100644
--- a/gcc/unwind.inc
+++ b/gcc/unwind.inc
@@ -47,7 +47,7 @@ _Unwind_RaiseException_Phase2(struct _Unwind_Exception *exc,
? _UA_HANDLER_FRAME : 0);
if (code != _URC_NO_REASON)
- /* Some error encountered. Ususally the unwinder doesn't
+ /* Some error encountered. Usually the unwinder doesn't
diagnose these and merely crashes. */
return _URC_FATAL_PHASE2_ERROR;