diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-10 20:13:21 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-10 20:13:21 +0000 |
commit | c071525a8168f890502ea9af97a1f3f6aa091411 (patch) | |
tree | 3631a492225fa7bd390f3c8a207719fbf73e30ba | |
parent | 4141444e5ba6336e79fea186ca7c6a6078a4c397 (diff) | |
download | gcc-c071525a8168f890502ea9af97a1f3f6aa091411.tar.gz |
* cse.c, tree-ssa-loop-ivopts.c, config/rs6000/linux-unwind.h:
Fix comment typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@94845 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/linux-unwind.h | 2 | ||||
-rw-r--r-- | gcc/cse.c | 2 | ||||
-rw-r--r-- | gcc/tree-ssa-loop-ivopts.c | 2 |
4 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d3814a2c3f8..d8da914663b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-02-10 Kazu Hirata <kazu@cs.umass.edu> + + * cse.c, tree-ssa-loop-ivopts.c, config/rs6000/linux-unwind.h: + Fix comment typos. + 2005-02-10 Zdenek Dvorak <dvorakz@suse.cz> * tree-ssa-loop-ivopts.c (determine_base_object): Ignore casts. diff --git a/gcc/config/rs6000/linux-unwind.h b/gcc/config/rs6000/linux-unwind.h index 3e12cc691ae..13afdfa4fb2 100644 --- a/gcc/config/rs6000/linux-unwind.h +++ b/gcc/config/rs6000/linux-unwind.h @@ -194,7 +194,7 @@ get_regs (struct _Unwind_Context *context) } #endif -/* Find an entry in the process auxilliary vector. The canonical way to +/* Find an entry in the process auxiliary vector. The canonical way to test for VMX is to look at AT_HWCAP. */ static long diff --git a/gcc/cse.c b/gcc/cse.c index 4a130d36a59..e9f6c2f4724 100644 --- a/gcc/cse.c +++ b/gcc/cse.c @@ -335,7 +335,7 @@ static unsigned int cse_reg_info_table_size; static unsigned int cse_reg_info_table_first_uninitialized; /* The timestamp at the beginning of the current run of - cse_basic_block. We increment this variable at at the beginning of + cse_basic_block. We increment this variable at the beginning of the current run of cse_basic_block. The timestamp field of a cse_reg_info entry matches the value of this variable if and only if the entry has been initialized during the current run of diff --git a/gcc/tree-ssa-loop-ivopts.c b/gcc/tree-ssa-loop-ivopts.c index a570569d02b..40661bea109 100644 --- a/gcc/tree-ssa-loop-ivopts.c +++ b/gcc/tree-ssa-loop-ivopts.c @@ -647,7 +647,7 @@ struct nfe_cache_elt /* The edge for that the number of iterations is cached. */ edge exit; - /* True if the # of iterations was succesfully determined. */ + /* True if the # of iterations was successfully determined. */ bool valid_p; /* Description of # of iterations. */ |