OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gcc.dg/] [c99-arraydecl-3.c] - Diff between revs 298 and 384

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 298 Rev 384
/* Test for C99 forms of array declarator.  Test restrict qualifiers
/* Test for C99 forms of array declarator.  Test restrict qualifiers
   properly applied to type of parameter.  */
   properly applied to type of parameter.  */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-do compile } */
/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
 
 
void
void
f0 (int a[restrict])
f0 (int a[restrict])
{
{
  int **b = &a; /* { dg-error "discards qualifiers" } */
  int **b = &a; /* { dg-error "discards qualifiers" } */
  int *restrict *c = &a;
  int *restrict *c = &a;
}
}
 
 
void
void
f1 (a)
f1 (a)
     int a[restrict];
     int a[restrict];
{
{
  int **b = &a; /* { dg-error "discards qualifiers" } */
  int **b = &a; /* { dg-error "discards qualifiers" } */
  int *restrict *c = &a;
  int *restrict *c = &a;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.