gimplify.c, [...]: Fix comment typos.

* gimplify.c, ipa-prop.h, varasm.c, config/vxlib.c,
	config/vxworks.h, config/crx/crx.c, config/ms1/ms1.c,
	config/ms1/ms1.md, config/rs6000/rs6000.c: Fix comment typos.
	Follow spelling conventions.
	* doc/invoke.texi: Follow spelling conventions.

From-SVN: r103925
This commit is contained in:
Kazu Hirata 2005-09-06 02:05:07 +00:00 committed by Kazu Hirata
parent 7a7d74a971
commit 57b51d4d63
11 changed files with 20 additions and 12 deletions

View File

@ -1,3 +1,11 @@
2005-09-06 Kazu Hirata <kazu@codesourcery.com>
* gimplify.c, ipa-prop.h, varasm.c, config/vxlib.c,
config/vxworks.h, config/crx/crx.c, config/ms1/ms1.c,
config/ms1/ms1.md, config/rs6000/rs6000.c: Fix comment typos.
Follow spelling conventions.
* doc/invoke.texi: Follow spelling conventions.
2005-09-05 J"orn Rennecke <joern.rennecke@st.com>
* rtl.h (gen_frame_mem, gen_tmp_stack_mem): Declare.

View File

@ -816,7 +816,7 @@ crx_address_cost (rtx addr)
if (addrtype == CRX_ABSOLUTE)
cost+=2;
/* Post-modifying addresses are more powerfull. */
/* Post-modifying addresses are more powerful. */
if (addrtype == CRX_POST_INC)
cost-=2;

View File

@ -1211,7 +1211,7 @@ ms1_expand_epilogue (enum epilogue_type eh_mode)
stack_pointer_rtx,
cfun->machine->eh_stack_adjust));
/* Generate the approriate return. */
/* Generate the appropriate return. */
if (eh_mode == EH_EPILOGUE)
{
emit_jump_insn (gen_eh_return_internal ());

View File

@ -72,11 +72,11 @@
;; This pattern implements the decrement and branch non-zero instruction
;; which can be used by gcc loop optimizer under certain conditions.
;; For an example of it being used try compiling the gcc test case
;; gcc.c-torture/execute/921213-1.c with optimisations enabled.
;; gcc.c-torture/execute/921213-1.c with optimizations enabled.
;; XXX - FIXME - TARGET_MUL is used as a condition since it is set when the
;; target is the MS1-16-003, which is the only Morpho CPU which currently
;; implements this instruction. Stricly speaking we ought to define a
;; implements this instruction. Strictly speaking we ought to define a
;; new command line switch to enable/disable the DBNZ instruction or else
;; change this pattern so that it explicitly checks for an MS1-16-003
;; architecture.
@ -515,7 +515,7 @@
;; Note - it is best to only have one movsi pattern and to handle
;; all the various contingencies by the use of alternatives. This
;; allows reload the greatest amount of flexability (since reload will
;; allows reload the greatest amount of flexibility (since reload will
;; only choose amoungst alternatives for a selected insn, it will not
;; replace the insn with another one).
(define_insn "*movsi_internal"

View File

@ -2260,7 +2260,7 @@ rs6000_expand_vector_init (rtx target, rtx vals)
{
rtx copy = copy_rtx (vals);
/* Load constant part of vector, substititute neighboring value for
/* Load constant part of vector, substitute neighboring value for
varying element. */
XVECEXP (copy, 0, one_var) = XVECEXP (vals, 0, (one_var + 1) % n_elts);
rs6000_expand_vector_init (target, copy);

View File

@ -252,7 +252,7 @@ tls_destructor (void)
/* External interface */
/* Store in KEYP a value which can be passed to __gthread_setspecific/
__gthread_getspecific to store and retrive a value which is
__gthread_getspecific to store and retrieve a value which is
specific to each calling thread. If DTOR is not NULL, it will be
called when a thread terminates with a non-NULL specific value for
this key, with the value as its sole argument. */

View File

@ -39,7 +39,7 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
%{!mrtp:-D_WRS_KERNEL=1 \
%{!nostdinc:-isystem " VXWORKS_TARGET_DIR "/h}}"
/* The references to __init and __fini will be satisified by
/* The references to __init and __fini will be satisfied by
libc_internal.a. */
#undef VXWORKS_LIB_SPEC
#define VXWORKS_LIB_SPEC \

View File

@ -10608,7 +10608,7 @@ Use simulator runtime
@item -mno-crt0
@opindex mno-crt0
Do not link in the C run-time initialization object file
@file{crti.o}. Other run-time initialisation and termination files
@file{crti.o}. Other run-time initialization and termination files
such as @file{startup.o} and @file{exit.o} are still included on the
linker command line.

View File

@ -4460,7 +4460,7 @@ gimplify_expr (tree *expr_p, tree *pre_p, tree *post_p,
exception here, as all we are doing here is ensuring that
we read the bytes that make up the type. We use
create_tmp_var_raw because create_tmp_var will abort when
given a TREE_ADDRESSSABLE type. */
given a TREE_ADDRESSABLE type. */
tree tmp = create_tmp_var_raw (type, "vol");
gimple_add_tmp_var (tmp);
*expr_p = build (MODIFY_EXPR, type, tmp, *expr_p);

View File

@ -60,7 +60,7 @@ enum cvalue_type
};
/* Represents the value of either jump function or cval.
value represnts a constant.
value represents a constant.
formal_id is used only in jump function context and represents
pass-through parameter (the formal of caller is passed
as argument). */

View File

@ -3847,7 +3847,7 @@ output_constant (tree exp, unsigned HOST_WIDE_INT size, unsigned int align)
if (size == 0 || flag_syntax_only)
return;
/* See if we're trying to intialize a pointer in a non-default mode
/* See if we're trying to initialize a pointer in a non-default mode
to the address of some declaration somewhere. If the target says
the mode is valid for pointers, assume the target has a way of
resolving it. */