1 /* gcc -std=c89 -gctf -g -mtune=generic -march=x86-64 -c \
2 * -o test-PR26568-1.o test-PR26568-1.c */
3
4 struct A {
5 union {
6 struct {
7 int x;
8 };
9 struct {
10 long y;
11 };
12 };
13 };
14
fun(struct A * a)15 void fun(struct A * a) {
16 a->x = 0;
17 a->y = 0x0102030405060708ULL;
18 }
19