aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/pr59388.c
blob: de3648a003eda0240d98964794e3a6924a4088ae (plain)
1
2
3
4
5
6
7
8
9
10
11
/* PR tree-optimization/59388 */

int a;
struct S { unsigned int f:1; } b;

int
main ()
{
  a = (0 < b.f) | b.f;
  return a;
}