OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [redecl-10.c] - Rev 689

Compare with Previous | Blame | View Log

/* Test for multiple declarations and composite types.  Check we don't
   ICE with nested initializers.  */
 
/* Origin: Joseph Myers <jsm@polyomino.org.uk> */
/* { dg-do compile } */
/* { dg-options "-g" } */
 
static int w[];
void
f (void)
{
  extern int w[] = { 1, 2 }; /* { dg-error "has both" } */
}
 
int x[]; /* { dg-warning "array 'x' assumed to have one element" } */
void
g (void)
{
  extern int x[] = { 3, 4, 5 }; /* { dg-error "has both" } */
}
 
static int y[];
void
h (void)
{
  extern int y[] = { 6 }; /* { dg-error "has both" } */
}
 
int z[]; /* { dg-warning "array 'z' assumed to have one element" } */
void
i (void)
{
  extern int z[] = { 7 }; /* { dg-error "has both" } */
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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