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/] [anon-struct-2.c] - Diff between revs 298 and 384

Only display areas with differences | Details | Blame | View Log

Rev 298 Rev 384
/* { dg-options "-std=gnu89" } */
/* { dg-options "-std=gnu89" } */
/* In GNU C mode, we recognize the anonymous struct/union extension,
/* In GNU C mode, we recognize the anonymous struct/union extension,
   but not Microsoft extensions.  */
   but not Microsoft extensions.  */
 
 
struct A { char a; };
struct A { char a; };
 
 
/* MS extension.  */
/* MS extension.  */
struct B {
struct B {
  struct A;                     /* { dg-warning "does not declare anything" } */
  struct A;                     /* { dg-warning "does not declare anything" } */
  char b;
  char b;
};
};
char testB[sizeof(struct B) == sizeof(struct A) ? 1 : -1];
char testB[sizeof(struct B) == sizeof(struct A) ? 1 : -1];
 
 
/* MS extension.  */
/* MS extension.  */
struct C {
struct C {
  struct D { char d; };         /* { dg-warning "does not declare anything" } */
  struct D { char d; };         /* { dg-warning "does not declare anything" } */
  char c;
  char c;
};
};
char testC[sizeof(struct C) == sizeof(struct A) ? 1 : -1];
char testC[sizeof(struct C) == sizeof(struct A) ? 1 : -1];
char testD[sizeof(struct D) == sizeof(struct A) ? 1 : -1];
char testD[sizeof(struct D) == sizeof(struct A) ? 1 : -1];
 
 
/* GNU extension.  */
/* GNU extension.  */
struct E {
struct E {
  struct { char z; };
  struct { char z; };
  char e;
  char e;
};
};
char testE[sizeof(struct E) == 2 * sizeof(struct A) ? 1 : -1];
char testE[sizeof(struct E) == 2 * sizeof(struct A) ? 1 : -1];
 
 
/* MS extension.  */
/* MS extension.  */
typedef struct A typedef_A;
typedef struct A typedef_A;
struct F {
struct F {
  typedef_A;                    /* { dg-warning "does not declare anything" } */
  typedef_A;                    /* { dg-warning "does not declare anything" } */
  char f;
  char f;
};
};
char testF[sizeof(struct F) == sizeof(struct A) ? 1 : -1];
char testF[sizeof(struct F) == sizeof(struct A) ? 1 : -1];
 
 
/* Test that __extension__ does the right thing coming _from_ GNU C mode.  */
/* Test that __extension__ does the right thing coming _from_ GNU C mode.  */
__extension__ struct G {
__extension__ struct G {
  struct { char z; };
  struct { char z; };
  char g;
  char g;
};
};
char testG[sizeof(struct G) == 2 * sizeof(struct A) ? 1 : -1];
char testG[sizeof(struct G) == 2 * sizeof(struct A) ? 1 : -1];
 
 
struct H {
struct H {
  struct { char z; };
  struct { char z; };
  char h;
  char h;
};
};
char testH[sizeof(struct H) == 2 * sizeof(struct A) ? 1 : -1];
char testH[sizeof(struct H) == 2 * sizeof(struct A) ? 1 : -1];
 
 

powered by: WebSVN 2.1.0

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