blob: 00ae0c8b99fbab79ef6be45aabdef8c10601374f [file] [log] [blame]
/* PR tree-optimizations/52891 */
#if __SIZEOF_INT__ > 2
struct __attribute__((packed)) S { unsigned s : 22; };
#else
struct __attribute__((packed)) S { unsigned s : 12; };
#endif
struct __attribute__((packed)) T { struct S t; } c;
int a, b, d;
void
foo (void)
{
if (1 ? (!c.t.s & (d < 0)) < a : 0)
b = 0;
}