Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr112618.c
blob897e6a8ed2eb9cfae268cc20d5f17eb5491fb8db
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 int m, *p;
6 __attribute__ ((simd)) int
7 bar (int x)
9 if (x)
11 if (m < 1)
12 for (m = 0; m < 1; ++m)
13 ++x;
14 p = &x;
15 for (;;)
16 ++m;
18 return 0;
21 __attribute__ ((simd)) int
22 foo (int x)
24 bar (x);
25 return 0;