Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr103859.c
blobc58be5c15af6f089267282a338411d8a3265c731
1 /* PR middle-end/103859 */
2 /* { dg-do compile } */
3 /* { dg-options "" } */
5 typedef struct dcmplx dcmplx;
7 struct dcmplx {
8 double re;
9 double im;
12 dcmplx horner(int n, dcmplx p[n], dcmplx x);
14 int main(void)
16 int i, n;
17 dcmplx x[n + 1], f[n + 1];
19 horner(n + 1, f, x[i]);
21 return 0;