aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/cmp.c
blob: a82fe424735bf1f955b4589d3ae923039c5b1f63 (plain)
1
2
3
4
5
6
7
8
9
10
11
struct fooalign {char x; double d;};
union fooround {long x; double d;};

int
foo ()
{
  int extra = 4;
  if (extra < sizeof (union fooround))
    extra = sizeof (union fooround);
  return extra;
}