diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-06-13 02:27:04 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-06-13 02:27:04 +0000 |
commit | bef304b8b52eab3ee756fceadade96d3410ed78e (patch) | |
tree | 53bc6532998c58f2c87be78479fff08b511afc9a /gcc/auto-inc-dec.c | |
parent | ed1dc2cd1ec1aafbcac80f88f3dc858c27b1d4f0 (diff) | |
download | gcc-bef304b8b52eab3ee756fceadade96d3410ed78e.tar.gz |
* auto-inc-dec.c, c-incpath.c, config/c4x/libgcc.S,
config/sh/divcost-analysis, dbgcnt.def, df-core.c,
df-problems.c, df-scan.c, df.h, dominance.c, dse.c, regstat.c,
tree-data-ref.c, tree-ssa-loop-im.c, tree-ssa-loop-prefetch.c,
tree-vect-transform.c: Fix comment typos. Follow spelling
conventions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@125666 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/auto-inc-dec.c')
-rw-r--r-- | gcc/auto-inc-dec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/auto-inc-dec.c b/gcc/auto-inc-dec.c index 24156624eac..6718b742c2a 100644 --- a/gcc/auto-inc-dec.c +++ b/gcc/auto-inc-dec.c @@ -90,7 +90,7 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA HAVE_PRE_INCREMENT, HAVE_POST_INCREMENT, HAVE_PRE_DECREMENT or HAVE_POST_DECREMENT defined. - 2) c is a contant not equal to the width of the value being accessed + 2) c is a constant not equal to the width of the value being accessed by the pointer. This is useful for machines that have HAVE_PRE_MODIFY_DISP, HAVE_POST_MODIFY_DISP defined. @@ -445,7 +445,7 @@ static rtx *reg_next_def = NULL; /* Move dead note that match PATTERN to TO_INSN from FROM_INSN. We do not really care about moving any other notes from the inc or add insn. Moving the REG_EQUAL and REG_EQUIV is clearly wrong and it - does not appear that there are any other kinds of relavant notes. */ + does not appear that there are any other kinds of relevant notes. */ static void move_dead_notes (rtx to_insn, rtx from_insn, rtx pattern) @@ -1195,7 +1195,7 @@ find_inc (bool first_try) return false; } - /* Need to check that there are no assignemnts to b + /* Need to check that there are no assignments to b before the add insn. */ other_insn = get_next_ref (REGNO (inc_insn.reg1), bb, reg_next_def); |