aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/950921-1.c
blob: 371c7d569c53d1895a762fae85b430d9beefdb5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
f ()
{
  union
    {
      signed char c;
      double d;
    } u;

  u.c = 1;
  u.c = 1;
  return u.c;
}