URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [bitfld-5.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-options "" } */ #include <limits.h> struct s { int i1 : sizeof (int) * CHAR_BIT; int i2 : sizeof (int) * CHAR_BIT; int i3 : sizeof (int) * CHAR_BIT; int i4 : sizeof (int) * CHAR_BIT; }; int f[sizeof (struct s) != sizeof (int) * 4 ? -1 : 1];
Go to most recent revision | Compare with Previous | Blame | View Log