aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/torture/pr39903-1.c
blob: 1a67dd79538d01594d68602818835dff811c3d95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* PR target/39903 */
/* { dg-do run } */
/* { dg-options "-Wno-psabi" } */

struct X {
  double d;
  double b[];
};

struct X __attribute__((noinline))
foo (double d)
{
  struct X x;
  x.d = d;
  return x;
}
extern void abort (void);
int main()
{
  struct X x = foo(3.0);
  if (x.d != 3.0)
    abort ();
  return 0;
}