view gcc/testsuite/g++.dg/opt/pr83609.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 84e7813d76e9
children
line wrap: on
line source

// PR middle-end/83609
// { dg-do compile }
// { dg-options "-O2 -fno-tree-forwprop" }

template <typename> class B;
template <> struct B<float>
{
  float foo () { return __real__ b; }
  _Complex float b;
};

void bar (int);

template <class T>
void
baz ()
{
  B<T> h;
  T *a = (T *) &h;
  a[0] = a[1] = 6;
  h.foo () ? void () : bar (7);
}

int
main ()
{
  baz<float> ();
}