Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr105263.c
blob5cb7fcd09a256cd877b8fdb302fb9516ed64309b
1 /* { dg-do compile { target dfp } } */
2 /* { dg-options "-O -ffast-math -w -Wno-psabi" } */
4 typedef _Decimal64 __attribute__((__vector_size__ (8))) U;
5 typedef _Decimal64 __attribute__((__vector_size__ (16))) V;
7 V v;
10 foo (U u)
12 u *= u;
13 u *= -(U){ v[1] };
14 return u;