diff options
author | Joseph Myers <jsm28@gcc.gnu.org> | 2001-11-23 02:05:19 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2001-11-23 02:05:19 +0000 |
commit | a1f300c0f19c17e0b17fe8017bc3cb79f23337bd (patch) | |
tree | 827acc65803788d44d036826826c0366d5c3edc9 /gcc/emit-rtl.c | |
parent | 754d92990a56ddb0319ecd360eed752684423f0a (diff) | |
download | gcc-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/emit-rtl.c')
-rw-r--r-- | gcc/emit-rtl.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index 5db9155..5e344b5 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -1336,7 +1336,7 @@ constant_subword (op, offset, mode) ??? This is a potential portability problem and should be fixed at some point. - We must excercise caution with the sign bit. By definition there + We must exercise caution with the sign bit. By definition there are 32 significant bits in K; there may be more in a HOST_WIDE_INT. Consider a host with a 32-bit long and a 64-bit HOST_WIDE_INT. So we explicitly mask and sign-extend as necessary. */ @@ -2837,7 +2837,7 @@ try_split (pat, trial, last) && !find_reg_note (insn, REG_BR_PROB, 0)) { /* We can preserve the REG_BR_PROB notes only if exactly - one jump is created, otherwise the machinde description + one jump is created, otherwise the machine description is responsible for this step using split_branch_probability variable. */ if (njumps != 1) @@ -3087,7 +3087,7 @@ add_insn_after (insn, after) { set_block_for_insn (insn, bb); /* Should not happen as first in the BB is always - eigther NOTE or LABEL. */ + either NOTE or LABEL. */ if (bb->end == after /* Avoid clobbering of structure when creating new BB. */ && GET_CODE (insn) != BARRIER @@ -3154,7 +3154,7 @@ add_insn_before (insn, before) { set_block_for_insn (insn, bb); /* Should not happen as first in the BB is always - eigther NOTE or LABEl. */ + either NOTE or LABEl. */ if (bb->head == insn /* Avoid clobbering of structure when creating new BB. */ && GET_CODE (insn) != BARRIER @@ -4668,7 +4668,7 @@ init_emit_once (line_numbers) #ifdef INIT_EXPANDERS /* This is to initialize {init|mark|free}_machine_status before the first call to push_function_context_to. This is needed by the Chill front - end which calls push_function_context_to before the first cal to + end which calls push_function_context_to before the first call to init_function_start. */ INIT_EXPANDERS; #endif |