aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/931018-1.c
blob: e80345168090e1e52bba218cb9b185b9d4ca5360 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
typedef struct
{
  int a, b;
} T;

void
f (T *bs)
{
  long long x;
  x = ({
    union { T s; long long l; } u;
    u.s = *bs;
    u.l;
  });
}