aboutsummaryrefslogtreecommitdiff
path: root/gcc/df.c
diff options
context:
space:
mode:
authorJoseph Myers <jsm28@gcc.gnu.org>2001-11-23 02:05:19 +0000
committerJoseph Myers <jsm28@gcc.gnu.org>2001-11-23 02:05:19 +0000
commita1f300c0f19c17e0b17fe8017bc3cb79f23337bd (patch)
tree827acc65803788d44d036826826c0366d5c3edc9 /gcc/df.c
parent754d92990a56ddb0319ecd360eed752684423f0a (diff)
downloadgcc-a1f300c0f19c17e0b17fe8017bc3cb79f23337bd.zip
gcc-a1f300c0f19c17e0b17fe8017bc3cb79f23337bd.tar.gz
gcc-a1f300c0f19c17e0b17fe8017bc3cb79f23337bd.tar.bz2
ChangeLog.0, [...]: Fix spelling errors.
* 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. From-SVN: r47279
Diffstat (limited to 'gcc/df.c')
-rw-r--r--gcc/df.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/df.c b/gcc/df.c
index 97184c5..9bd0ad2 100644
--- a/gcc/df.c
+++ b/gcc/df.c
@@ -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)