aboutsummaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2007-05-26 12:17:52 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2007-05-26 12:17:52 +0000
commit4dad0aca146f96888dda601263e31f8621de1bae (patch)
tree903b6ffc6c810b13e3b3edeb9e468186e2ee4223 /gcc/config
parent0ee8e25059355c772a3e7c7eb88d502496bc7922 (diff)
downloadgcc-4dad0aca146f96888dda601263e31f8621de1bae.zip
gcc-4dad0aca146f96888dda601263e31f8621de1bae.tar.gz
gcc-4dad0aca146f96888dda601263e31f8621de1bae.tar.bz2
c-typeck.c, [...]: Fix typos and follow spelling conventions in various warning/error/diagnostic...
* c-typeck.c, config/arm/arm.c, config/darwin.c, config/sh/symbian.c, gcc.c, ipa-cp.c, ipa-inline.c, loop-iv.c, omega.c, tree-ssa-loop-niter.c, treestruct.def: Fix typos and follow spelling conventions in various warning/error/diagnostic messages. From-SVN: r125089
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/arm/arm.c2
-rw-r--r--gcc/config/darwin.c4
-rw-r--r--gcc/config/sh/symbian.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c
index dd75551..cf7c62c 100644
--- a/gcc/config/arm/arm.c
+++ b/gcc/config/arm/arm.c
@@ -11778,7 +11778,7 @@ arm_print_operand (FILE *stream, rtx x, int code)
want to do that. */
if (x == const_true_rtx)
{
- output_operand_lossage ("instruction never exectued");
+ output_operand_lossage ("instruction never executed");
return;
}
if (!COMPARISON_P (x))
diff --git a/gcc/config/darwin.c b/gcc/config/darwin.c
index 73836ae..17a8d59 100644
--- a/gcc/config/darwin.c
+++ b/gcc/config/darwin.c
@@ -1415,14 +1415,14 @@ darwin_handle_kext_attribute (tree *node, tree name,
/* APPLE KEXT stuff -- only applies with pure static C++ code. */
if (! TARGET_KEXTABI)
{
- warning (0, "%<%s%> 2.95 vtable-compatability attribute applies "
+ warning (0, "%<%s%> 2.95 vtable-compatibility attribute applies "
"only when compiling a kext", IDENTIFIER_POINTER (name));
*no_add_attrs = true;
}
else if (TREE_CODE (*node) != RECORD_TYPE)
{
- warning (0, "%<%s%> 2.95 vtable-compatability attribute applies "
+ warning (0, "%<%s%> 2.95 vtable-compatibility attribute applies "
"only to C++ classes", IDENTIFIER_POINTER (name));
*no_add_attrs = true;
diff --git a/gcc/config/sh/symbian.c b/gcc/config/sh/symbian.c
index 4836d9b..9812026 100644
--- a/gcc/config/sh/symbian.c
+++ b/gcc/config/sh/symbian.c
@@ -381,7 +381,7 @@ symbian_add_attribute (tree node, const char *attr_name)
TYPE_ATTRIBUTES (node) = tree_cons (attr, NULL_TREE, attrs);
#if SYMBIAN_DEBUG
- fprintf (stderr, "propogate %s attribute", attr_name);
+ fprintf (stderr, "propagate %s attribute", attr_name);
print_node_brief (stderr, " to", node, 0);
fprintf (stderr, "\n");
#endif