URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [attr-ms_struct-packed1.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test for MS structure with packed attribute. */ /* { dg-do run { target *-*-interix* *-*-mingw* *-*-cygwin* i?86-*-darwin* } } /* { dg-options "-std=gnu99" } */ extern void abort (); union u { int a; } __attribute__((__ms_struct__, __packed__)); struct s { char c; union u u; }; int main (void) { if (sizeof (struct s) != (sizeof (char) + sizeof (union u))) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log