view gcc/testsuite/gcc.dg/pr42475.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* PR rtl-optimization/42475 */
/* { dg-do compile } */
/* { dg-options "-O2" } */

typedef struct { float x, y; } B;
typedef struct { float z; } C;
typedef struct { B b; C c; } D;

B
foo (float x, float y)
{
  B b = { .x = x, .y = y };
  return b;
}

B
bar (B b, B y)
{
  return foo (y.x + b.x, b.y);
}

B
baz (D p)
{
  D d = { };
  B y = bar (foo (0, (p.c.z) / 2), d.b);
  return y;
}