Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr110461.c
blobcd23a2b16159253f59dc43fb80e16b472a5e1ee5
1 /* { dg-do compile } */
2 /* { dg-options "-O" } */
4 typedef int v4si __attribute__ ((vector_size (4*sizeof(int))));
5 typedef short v4hi __attribute__ ((vector_size (4*sizeof(short))));
7 v4hi res;
8 v4hi a, b;
10 void f(void)
12 v4si t = __builtin_convertvector (a, v4si);
13 v4si t1 = __builtin_convertvector (b, v4si);
14 t ^= t1;
15 res = __builtin_convertvector (t, v4hi);