* gcc.dg/c99-restrict-2.c: New test.

From-SVN: r72889
This commit is contained in:
Joseph Myers 2003-10-24 13:00:25 +01:00 committed by Joseph Myers
parent 1462870004
commit 349dfad90e
2 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2003-10-24 Joseph S. Myers <jsm@polyomino.org.uk>
* gcc.dg/c99-restrict-2.c: New test.
2003-10-24 Nathan Sidwell <nathan@codesourcery.com>
PR c++/12698, c++/12699, c++/12700, c++/12566

View File

@ -0,0 +1,12 @@
/* Test for restrict: in C99 only. Test handling of arrays of restricted
pointers. */
/* Origin: Joseph Myers <jsm@polyomino.org.uk> */
/* { dg-do compile } */
/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
typedef int *ipa[2];
int *restrict x[2];
restrict ipa y;
void f(int *restrict a[2], restrict ipa b, int *restrict c[restrict]);