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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [init-bad-2.c] - Diff between revs 154 and 816

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

Rev 154 Rev 816
/* Test diagnostics for various bad initializers.  Test cases with
/* Test diagnostics for various bad initializers.  Test cases with
   standard syntax with -pedantic.  */
   standard syntax with -pedantic.  */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-do compile } */
/* { dg-options "-std=gnu99 -pedantic" } */
/* { dg-options "-std=gnu99 -pedantic" } */
 
 
void f(void);
void f(void);
void g(void) = f; /* { dg-error "error: function 'g' is initialized like a variable" } */
void g(void) = f; /* { dg-error "error: function 'g' is initialized like a variable" } */
 
 
void h(a)
void h(a)
     int a = 1; /* { dg-error "error: parameter 'a' is initialized" } */
     int a = 1; /* { dg-error "error: parameter 'a' is initialized" } */
{
{
  struct s x = { 0 }; /* { dg-error "error: variable 'x' has initializer but incomplete type" } */
  struct s x = { 0 }; /* { dg-error "error: variable 'x' has initializer but incomplete type" } */
  /* { dg-warning "excess elements|near init" "near" { target *-*-* } 13 } */
  /* { dg-warning "excess elements|near init" "near" { target *-*-* } 13 } */
  /* { dg-error "storage size" "size" { target *-*-* } 13 } */
  /* { dg-error "storage size" "size" { target *-*-* } 13 } */
}
}
 
 
char s[1] = "x";
char s[1] = "x";
char s1[1] = { "x" };
char s1[1] = { "x" };
char t[1] = "xy"; /* { dg-warning "warning: initializer-string for array of chars is too long" } */
char t[1] = "xy"; /* { dg-warning "warning: initializer-string for array of chars is too long" } */
char t1[1] = { "xy" }; /* { dg-warning "warning: initializer-string for array of chars is too long" } */
char t1[1] = { "xy" }; /* { dg-warning "warning: initializer-string for array of chars is too long" } */
char u[1] = { "x", "x" }; /* { dg-error "error: excess elements in char array initializer" } */
char u[1] = { "x", "x" }; /* { dg-error "error: excess elements in char array initializer" } */
/* { dg-error "near init" "near" { target *-*-* } 22 } */
/* { dg-error "near init" "near" { target *-*-* } 22 } */
 
 
int j = { 1 };
int j = { 1 };
 
 
int k = { 1, 2 }; /* { dg-warning "warning: excess elements in scalar initializer" } */
int k = { 1, 2 }; /* { dg-warning "warning: excess elements in scalar initializer" } */
/* { dg-warning "near init" "near" { target *-*-* } 27 } */
/* { dg-warning "near init" "near" { target *-*-* } 27 } */
 
 
int a1[1] = { [1] = 0 }; /* { dg-error "error: array index in initializer exceeds array bounds" } */
int a1[1] = { [1] = 0 }; /* { dg-error "error: array index in initializer exceeds array bounds" } */
/* { dg-error "near init" "near" { target *-*-* } 30 } */
/* { dg-error "near init" "near" { target *-*-* } 30 } */
int a2[1] = { [-1] = 0 }; /* { dg-error "error: array index in initializer exceeds array bounds" } */
int a2[1] = { [-1] = 0 }; /* { dg-error "error: array index in initializer exceeds array bounds" } */
/* { dg-error "near init" "near" { target *-*-* } 32 } */
/* { dg-error "near init" "near" { target *-*-* } 32 } */
 
 

powered by: WebSVN 2.1.0

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