diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-23 02:05:19 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-23 02:05:19 +0000 |
commit | 3fb1e43b955821cefaa85917b813a41b6fb8d204 (patch) | |
tree | 827acc65803788d44d036826826c0366d5c3edc9 /gcc/df.c | |
parent | 4ad72a0325ec1d17df81831a7c0437644a91e96f (diff) | |
download | gcc-3fb1e43b955821cefaa85917b813a41b6fb8d204.tar.gz |
* ChangeLog.0, ChangeLog.2, ChangeLog.3, ChangeLog.4, ChangeLog,
FSFChangeLog.10, c-decl.c, cppfiles.c, cppinit.c, cpplex.c,
cpplib.c, cppmain.c, cse.c, df.c, diagnostic.c, dominance.c,
dwarf2out.c, dwarfout.c, emit-rtl.c, errors.c, except.c, except.h,
explow.c, function.c, gcse.c, genrecog.c, predict.c, regmove.c,
sched-rgn.c, ssa-ccp.c, stmt.c, toplev.c: Fix spelling errors.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47279 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/df.c')
-rw-r--r-- | gcc/df.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -954,8 +954,8 @@ df_def_record_1 (df, x, bb, insn) || GET_CODE (dst) == SIGN_EXTRACT || read_modify_subreg_p (dst)) { - /* Strict low part allways contains SUBREG, but we don't want to make - it appear outside, as whole register is allways considered. */ + /* Strict low part always contains SUBREG, but we don't want to make + it appear outside, as whole register is always considered. */ if (GET_CODE (dst) == STRICT_LOW_PART) { loc = &XEXP (dst, 0); @@ -1334,7 +1334,7 @@ df_bb_reg_def_chain_create (df, bb) /* Perhaps the defs should be sorted using a depth first search of the CFG (or possibly a breadth first search). We currently scan the basic blocks in reverse order so that the first defs - apprear at the start of the chain. */ + appear at the start of the chain. */ for (insn = bb->end; insn && insn != PREV_INSN (bb->head); insn = PREV_INSN (insn)) @@ -2531,7 +2531,7 @@ df_insn_mem_replace (df, bb, insn, mem, reg) args.replacement = reg; args.modified = 0; - /* Seach and replace all matching mems within insn. */ + /* Search and replace all matching mems within insn. */ for_each_rtx (&insn, df_rtx_mem_replace, &args); if (args.modified) |