view gcc/testsuite/gcc.dg/pr42475.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +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;
}