diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-05-16 12:39:54 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-05-16 12:39:54 +0000 |
commit | c3418f425801179142b1f09b100989b6af411d88 (patch) | |
tree | 1e50640eecb618d0b3fa87607094528acb0add62 /gcc/sched.c | |
parent | 01cc3b7526f036bef25d4140ef0903276a67aa9a (diff) | |
download | gcc-c3418f425801179142b1f09b100989b6af411d88.tar.gz |
Fix typos in comments.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9712 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sched.c')
-rw-r--r-- | gcc/sched.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/sched.c b/gcc/sched.c index 49c37b15f2f..1632329ee52 100644 --- a/gcc/sched.c +++ b/gcc/sched.c @@ -847,7 +847,7 @@ anti_dependence (mem, x) { /* If MEM is an unchanging read, then it can't possibly conflict with the store to X, because there is at most one store to MEM, and it must - have occured somewhere before MEM. */ + have occurred somewhere before MEM. */ if (RTX_UNCHANGING_P (mem)) return 0; @@ -2367,7 +2367,7 @@ sched_note_set (b, x, death) } /* Macros and functions for keeping the priority queue sorted, and - dealing with queueing and unqueueing of instructions. */ + dealing with queueing and dequeueing of instructions. */ #define SCHED_SORT(READY, NEW_READY, OLD_READY) \ do { if ((NEW_READY) - (OLD_READY) == 1) \ |