aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite
diff options
context:
space:
mode:
authorGabriel Dos Reis <gdr@nerim.net>2002-07-21 21:35:17 +0000
committerGabriel Dos Reis <gdr@gcc.gnu.org>2002-07-21 21:35:17 +0000
commit565083069d08d22e1c8882948fba1e90dcde1388 (patch)
tree65860333fa5eace063eaed77c267e32c72a10073 /gcc/testsuite
parente2f62855b2ad7615a8f731a8a90b64217e2110c3 (diff)
downloadgcc-565083069d08d22e1c8882948fba1e90dcde1388.zip
gcc-565083069d08d22e1c8882948fba1e90dcde1388.tar.gz
gcc-565083069d08d22e1c8882948fba1e90dcde1388.tar.bz2
c-decl.c (build_array_declarator): Say 'ISO C90', not 'ISO C89'.
2002-07-21 Gabriel Dos Reis <gdr@nerim.net> * c-decl.c (build_array_declarator): Say 'ISO C90', not 'ISO C89'. (grokdeclarator): Likewise. * c-format.c (C_STD_NAME): Likewise. * c-lex.c (interpret_integer): Likewise. * c-typeck.c (build_array_ref): Likewise. * cpplex.c (_cpp_lex_direct): Likewise. * toplev.c (documented_lang_options): Likewise. testsuite/ 2002-07-21 Gabriel Dos Reis <gdr@nerim.net> * gcc.dg/c90-arraydecl-1.c: Change C89 too C90. From-SVN: r55629
Diffstat (limited to 'gcc/testsuite')
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/gcc.dg/c90-arraydecl-1.c14
2 files changed, 11 insertions, 7 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 5388182..bf8976f 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2002-07-21 Gabriel Dos Reis <gdr@nerim.net>
+
+ * gcc.dg/c90-arraydecl-1.c: Change C89 too C90.
+
2002-07-20 Roger Sayle <roger@eyesopen.com>
* gcc.c-torture/execute/20020720-1.c: New testcase.
diff --git a/gcc/testsuite/gcc.dg/c90-arraydecl-1.c b/gcc/testsuite/gcc.dg/c90-arraydecl-1.c
index b3e7035..47334b9 100644
--- a/gcc/testsuite/gcc.dg/c90-arraydecl-1.c
+++ b/gcc/testsuite/gcc.dg/c90-arraydecl-1.c
@@ -8,24 +8,24 @@
it correctly, so gives a warning about this. so we can't yet test here
that we get just one error and no warnings. */
-void foo0 (int a, int b[*]); /* { dg-error "ISO C89" "\[*\] not in C89" } */
+void foo0 (int a, int b[*]); /* { dg-error "ISO C90" "\[*\] not in C90" } */
/* { dg-warning "implement" "\[*\] not implemented" { target *-*-* } 11 } */
-void foo1 (int, int [*]); /* { dg-error "ISO C89" "\[*\] not in C89" } */
+void foo1 (int, int [*]); /* { dg-error "ISO C90" "\[*\] not in C90" } */
/* { dg-warning "implement" "\[*\] not implemented" { target *-*-* } 13 } */
/* Use of static and type qualifiers (not allowed with abstract declarators)
is a C99 feature. */
void bar0 (int a[const]); /* { dg-bogus "warning" "warning in place of error" } */
-/* { dg-error "ISO C89" "\[quals\] not in C89" { target *-*-* } 19 } */
+/* { dg-error "ISO C90" "\[quals\] not in C90" { target *-*-* } 19 } */
void bar1 (int a[const 2]); /* { dg-bogus "warning" "warning in place of error" } */
-/* { dg-error "ISO C89" "\[quals expr\] not in C89" { target *-*-* } 21 } */
+/* { dg-error "ISO C90" "\[quals expr\] not in C90" { target *-*-* } 21 } */
void bar2 (int a[static 2]); /* { dg-bogus "warning" "warning in place of error" } */
-/* { dg-error "ISO C89" "\[static expr\] not in C89" { target *-*-* } 23 } */
+/* { dg-error "ISO C90" "\[static expr\] not in C90" { target *-*-* } 23 } */
void bar3 (int a[static const 2]); /* { dg-bogus "warning" "warning in place of error" } */
-/* { dg-error "ISO C89" "\[static quals expr\] not in C89" { target *-*-* } 25 } */
+/* { dg-error "ISO C90" "\[static quals expr\] not in C90" { target *-*-* } 25 } */
void bar4 (int a[const static 2]); /* { dg-bogus "warning" "warning in place of error" } */
-/* { dg-error "ISO C89" "\[quals static expr\] not in C89" { target *-*-* } 27 } */
+/* { dg-error "ISO C90" "\[quals static expr\] not in C90" { target *-*-* } 27 } */
/* Because [*] isn't properly implemented and so warns, we don't test here
for [const *] yet. */