diff options
author | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-21 21:35:17 +0000 |
---|---|---|
committer | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-21 21:35:17 +0000 |
commit | ba059ac08df083b778d3285145cf7158756e612b (patch) | |
tree | 65860333fa5eace063eaed77c267e32c72a10073 /gcc/testsuite/gcc.dg/c90-arraydecl-1.c | |
parent | 198fb69b92678aa6bb489a9138a382140dfcc3aa (diff) | |
download | gcc-ba059ac08df083b778d3285145cf7158756e612b.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55629 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gcc.dg/c90-arraydecl-1.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/c90-arraydecl-1.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/testsuite/gcc.dg/c90-arraydecl-1.c b/gcc/testsuite/gcc.dg/c90-arraydecl-1.c index b3e7035c059..47334b9123d 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. */ |