Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr94574.c
blob0d18bd82832c83da35b2a7c22f18683500ed3889
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -w -Wno-psabi" } */
4 typedef unsigned int v4si __attribute__((vector_size(16)));
5 typedef unsigned int v2si __attribute__((vector_size(8)));
7 /* The aliasing is somewhat dubious here, but it must compile. */
9 v2si
10 foo (v4si v)
12 v2si res;
13 *(v4si *) &res = v;
14 return res;