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

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