diff options
author | Joseph Myers <joseph@codesourcery.com> | 2007-11-22 23:12:29 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2007-11-22 23:12:29 +0000 |
commit | 6ac0194d21d90e29832fd1c996ba23e6e183d328 (patch) | |
tree | f8959fdd1818cd96126e42cc4ebcbcb497abeb58 /gcc/testsuite/gcc.dg/c99-arraydecl-1.c | |
parent | df8702365b9124ee1b29f8a25ba23fa0982fa237 (diff) | |
download | gcc-6ac0194d21d90e29832fd1c996ba23e6e183d328.zip gcc-6ac0194d21d90e29832fd1c996ba23e6e183d328.tar.gz gcc-6ac0194d21d90e29832fd1c996ba23e6e183d328.tar.bz2 |
re PR c/14050 ([DR289] c99 restrict doesn't work in abs declarator)
PR c/14050
* c-decl.c (set_array_declarator_inner): Don't give error for
static or type qualifiers in abstract declarator. Remove
abstract_p parameter.
* c-tree.h (set_array_declarator_inner): Update prototype.
* c-parser.c (c_parser_direct_declarator_inner): Update call to
set_array_declarator_inner.
* doc/standards.texi: Update for C99 TC3.
testsuite:
* gcc.dg/c99-arraydecl-1.c: Don't expect errors for static or type
qualifiers in abstract declarator.
From-SVN: r130362
Diffstat (limited to 'gcc/testsuite/gcc.dg/c99-arraydecl-1.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/c99-arraydecl-1.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/testsuite/gcc.dg/c99-arraydecl-1.c b/gcc/testsuite/gcc.dg/c99-arraydecl-1.c index 24ddd65..2036d82 100644 --- a/gcc/testsuite/gcc.dg/c99-arraydecl-1.c +++ b/gcc/testsuite/gcc.dg/c99-arraydecl-1.c @@ -9,8 +9,8 @@ [quals static expr]. Not yet: [quals *]. */ void f00 (int a[const]); -void f01 (int [const]); /* { dg-bogus "warning" "warning in place of error" } */ -/* { dg-error "abstract" "\[quals\] in abstract declarator" { target *-*-* } 12 } */ +void f01 (int [const]); + void f02 (int a[const]) { @@ -28,8 +28,8 @@ f03 (a) } void f10 (int a[const 2]); -void f11 (int [const 2]); /* { dg-bogus "warning" "warning in place of error" } */ -/* { dg-error "abstract" "\[quals expr\] in abstract declarator" { target *-*-* } 31 } */ +void f11 (int [const 2]); + void f12 (int a[const 2]) { @@ -47,8 +47,8 @@ f13 (a) } void f20 (int a[static 2]); -void f21 (int [static 2]); /* { dg-bogus "warning" "warning in place of error" } */ -/* { dg-error "abstract" "\[static expr\] in abstract declarator" { target *-*-* } 50 } */ +void f21 (int [static 2]); + void f22 (int a[static 2]) { @@ -64,8 +64,8 @@ f23 (a) } void f30 (int a[static const 2]); -void f31 (int [static const 2]); /* { dg-bogus "warning" "warning in place of error" } */ -/* { dg-error "abstract" "\[static quals expr\] in abstract declarator" { target *-*-* } 67 } */ +void f31 (int [static const 2]); + void f32 (int a[static const 2]) { @@ -83,8 +83,8 @@ f33 (a) } void f40 (int a[const static 2]); -void f41 (int [const static 2]); /* { dg-bogus "warning" "warning in place of error" } */ -/* { dg-error "abstract" "\[quals static expr\] in abstract declarator" { target *-*-* } 86 } */ +void f41 (int [const static 2]); + void f42 (int a[const static 2]) { |