modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/961031-1.c (about) 1 struct s { 2 double d; 3 } sd; 4 5 struct s g () __attribute__ ((const)); 6 7 struct s 8 g () 9 { 10 return sd; 11 } 12 13 f () 14 { 15 g (); 16 }