aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/format
diff options
context:
space:
mode:
authorKazu Hirata <kazu@gcc.gnu.org>2002-09-15 17:51:50 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-09-15 17:51:50 +0000
commit3bbe3320ec5d9c41544e904c15b6c55db115a9be (patch)
tree76b3d556f3aa187f20feefc138642e07f4e35b3b /gcc/testsuite/gcc.dg/format
parent56149abcd3ec956a50cd8c563bc103acf6fbc3bd (diff)
downloadgcc-3bbe3320ec5d9c41544e904c15b6c55db115a9be.zip
gcc-3bbe3320ec5d9c41544e904c15b6c55db115a9be.tar.gz
gcc-3bbe3320ec5d9c41544e904c15b6c55db115a9be.tar.bz2
ChangeLog: Follow spelling conventions.
* ChangeLog: Follow spelling conventions. * g++.dg/template/friend4.C: Likewise. * g++.old-deja/g++.pt/crash67.C: Likewise. * gcc.c-torture/execute/20000801-4.c: Likewise. * gcc.dg/c90-digraph-1.c: Likewise. * gcc.dg/c94-digraph-1.c: Likewise. * gcc.dg/c99-digraph-1.c: Likewise. * gcc.dg/cpp/line5.c: Likewise. * gcc.dg/cpp/multiline.c: Likewise. * gcc.dg/cpp/trad/literals-1.c: Likewise. * gcc.dg/format/attr-3.c: Likewise. * gcc.dg/format/c90-scanf-3.c: Likewise. * gcc.dg/format/ext-4.c: Likewise. From-SVN: r57161
Diffstat (limited to 'gcc/testsuite/gcc.dg/format')
-rw-r--r--gcc/testsuite/gcc.dg/format/attr-3.c2
-rw-r--r--gcc/testsuite/gcc.dg/format/c90-scanf-3.c2
-rw-r--r--gcc/testsuite/gcc.dg/format/ext-4.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/gcc.dg/format/attr-3.c b/gcc/testsuite/gcc.dg/format/attr-3.c
index 9627497..8fc1faa 100644
--- a/gcc/testsuite/gcc.dg/format/attr-3.c
+++ b/gcc/testsuite/gcc.dg/format/attr-3.c
@@ -33,7 +33,7 @@ struct s1 { int i; } __attribute__((format_arg(1))); /* { dg-error "does not app
union u1 { int i; } __attribute__((format_arg(1))); /* { dg-error "does not apply|only applies" "format_arg on union" } */
enum e1 { E1V0 } __attribute__((format_arg(1))); /* { dg-error "does not apply|only applies" "format_arg on enum" } */
-/* The format type must be an identifier, one of those recognised. */
+/* The format type must be an identifier, one of those recognized. */
extern void fe0 (const char *, ...) __attribute__((format(12345, 1, 2))); /* { dg-error "format specifier" "non-id format" } */
extern void fe1 (const char *, ...) __attribute__((format(nosuch, 1, 2))); /* { dg-warning "format function type" "unknown format" } */
diff --git a/gcc/testsuite/gcc.dg/format/c90-scanf-3.c b/gcc/testsuite/gcc.dg/format/c90-scanf-3.c
index 9b6f290..5570707 100644
--- a/gcc/testsuite/gcc.dg/format/c90-scanf-3.c
+++ b/gcc/testsuite/gcc.dg/format/c90-scanf-3.c
@@ -10,7 +10,7 @@
void
foo (char **sp, wchar_t **lsp)
{
- /* %a formats for allocation, only recognised in C90 mode, are a
+ /* %a formats for allocation, only recognized in C90 mode, are a
GNU extension.
*/
scanf ("%as", sp); /* { dg-warning "C" "%as" } */
diff --git a/gcc/testsuite/gcc.dg/format/ext-4.c b/gcc/testsuite/gcc.dg/format/ext-4.c
index db82500..c11c0ad 100644
--- a/gcc/testsuite/gcc.dg/format/ext-4.c
+++ b/gcc/testsuite/gcc.dg/format/ext-4.c
@@ -8,7 +8,7 @@
void
foo (char **sp, wchar_t **lsp)
{
- /* %a formats for allocation, only recognised in C90 mode, are a
+ /* %a formats for allocation, only recognized in C90 mode, are a
GNU extension. Followed by other characters, %a is not treated
specially.
*/