2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 961031-1.c
blobea8718f763b15e8c955eca47ea136fb2a6437f4e
1 struct s {
2 double d;
3 } sd;
5 struct s g () __attribute__ ((const));
7 struct s
8 g ()
10 return sd;
13 f ()
15 g ();