blob: 4bb7cdbe0760beb9ea08d7e257f38eebe8ce7083 [file] [log] [blame]
/* The bit-field below would have a problem if __INT_MAX__ is too
small. */
#if __INT_MAX__ < 2147483647
int
main (void)
{
exit (0);
}
#else
f ()
{
struct {
int x : 18;
int y : 14;
} foo;
foo.x = 10;
foo.y = 20;
return foo.y;
}
main ()
{
if (f () != 20)
abort ();
exit (0);
}
#endif