modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/hibug.c (about) 1 struct foo 2 { 3 short d; 4 int a; 5 }; 6 7 int 8 bar (d, u) 9 short d; 10 struct foo u; 11 { 12 13 u.d = d; 14 return (int) (&u); 15 }