aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/961031-1.c
blob: ea8718f763b15e8c955eca47ea136fb2a6437f4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
struct s {
  double d;
} sd;

struct s g () __attribute__ ((const));

struct s
g ()
{
  return sd;
}

f ()
{
  g ();
}