blob: cab6e909d36eef016438f7551a5ae05392e461a7 [file] [log] [blame]
// PR rtl-optimization/77919
// { dg-do compile }
// { dg-additional-options "-Wno-psabi" }
struct A { A (double) {} _Complex double i; };
typedef int __attribute__ ((vector_size (16))) B;
typedef struct { B b; } C;
struct D { D (const B &x) : b (x) {} B b; };
static inline B foo (const double *x) { C *a; a = (C *) x; return a->b; }
static inline D baz (const A &x) { return foo ((double *) &x); }
D b = baz (0);