OSDN Git Service

Backported from mainline
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 961031-1.c
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 }