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
/
pr108423-3.c
blob
c1987c42b403374e62faa55e8faf6fb9c0f2e685
1
/* PR108423
2
* { dg-do compile }
3
* { dg-options "-O2" }
4
*/
5
6
void
f
(
int
n
,
int
(*(*
b
)(
void
))[
n
])
7
{
8
sizeof
(*(*
b
)());
9
}
10
11
int
(*
a
(
void
))[
1
];
12
13
void
g
(
void
)
14
{
15
f
(
1
, &
a
);
16
}
17