repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr103859.c
blob
c58be5c15af6f089267282a338411d8a3265c731
1
/* PR middle-end/103859 */
2
/* { dg-do compile } */
3
/* { dg-options "" } */
4
5
typedef
struct
dcmplx dcmplx
;
6
7
struct
dcmplx
{
8
double
re
;
9
double
im
;
10
};
11
12
dcmplx
horner
(
int
n
,
dcmplx p
[
n
],
dcmplx x
);
13
14
int
main
(
void
)
15
{
16
int
i
,
n
;
17
dcmplx x
[
n
+
1
],
f
[
n
+
1
];
18
19
horner
(
n
+
1
,
f
,
x
[
i
]);
20
21
return
0
;
22
}
23