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