diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-05-26 12:17:52 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-05-26 12:17:52 +0000 |
commit | 666137bc66ce56e73fcdd9d4764519d010f47f4a (patch) | |
tree | 903b6ffc6c810b13e3b3edeb9e468186e2ee4223 /gcc/config/darwin.c | |
parent | 151af9883b7f98ddd24f3ccab6923f88960dd889 (diff) | |
download | gcc-666137bc66ce56e73fcdd9d4764519d010f47f4a.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@125089 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/darwin.c')
-rw-r--r-- | gcc/config/darwin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/darwin.c b/gcc/config/darwin.c index 73836ae08b0..17a8d5995a7 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; |