aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/torture/pr39903-2.c
blob: 0cd74029b6dbec937124065ef6c43d9d0fd85122 (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 {
  float d;
  float b[];
};

struct X __attribute__((noinline))
foo (float 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;
}