URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [c99-arraydecl-3.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test for C99 forms of array declarator. Test restrict qualifiers properly applied to type of parameter. */ /* Origin: Joseph Myers <joseph@codesourcery.com> */ /* { dg-do compile } */ /* { dg-options "-std=iso9899:1999 -pedantic-errors" } */ void f0 (int a[restrict]) { int **b = &a; /* { dg-error "discards 'restrict' qualifier" } */ int *restrict *c = &a; } void f1 (a) int a[restrict]; { int **b = &a; /* { dg-error "discards 'restrict' qualifier" } */ int *restrict *c = &a; }
Go to most recent revision | Compare with Previous | Blame | View Log