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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr108423-4.c
blob
91336f3f28333f8b752020b121b223549226a130
1
/* PR108423
2
* { dg-do compile }
3
* { dg-options "-O2" }
4
*/
5
6
void
f
(
int
n
,
int
(*
a
(
void
))[
n
])
7
{
8
sizeof
(*
a
());
9
}
10
11
int
(*
a
(
void
))[
1
];
12
13
void
g
(
void
)
14
{
15
f
(
1
,
a
);
16
}
17