PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr59388.c
blobde3648a003eda0240d98964794e3a6924a4088ae
1 /* PR tree-optimization/59388 */
3 int a;
4 struct S { unsigned int f:1; } b;
6 int
7 main ()
9 a = (0 < b.f) | b.f;
10 return a;