1/* PR tree-optimization/59388 */
2
3int a;
4struct S { unsigned int f:1; } b;
5
6int
7main ()
8{
9  a = (0 < b.f) | b.f;
10  return a;
11}
12