Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr92741.c
blob8524c86557b3acf05404894c34dcad7a26ab5f76
1 /* { dg-options "-O2 -fexceptions -fnon-call-exceptions -fno-inline" } */
3 typedef int vh __attribute__ ((__vector_size__ (2 * sizeof (int))));
4 typedef short int cq __attribute__ ((__vector_size__ (4 * sizeof (short int))));
6 static void
7 id (int *r8, vh *tu)
9 *(vh *) r8 = *tu;
12 void
13 mr (void)
15 int r8;
16 cq he = { 0, };
18 id (&r8, (vh *) &he);