view gcc/testsuite/gcc.dg/torture/pr39903-2.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* 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;
}