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-1.c
blob
0c98d1d46b9184a06646be22b544f7ea355dfec7
1
/* PR108423
2
* { dg-do compile }
3
* { dg-options "-O2 -Wno-int-conversion -Wno-incompatible-pointer-types" }
4
*/
5
int
f
(
int
n
,
int
(**(*
a
)(
void
))[
n
])
6
{
7
return
(*
a
())[
0
];
8
}
9
int
g
()
10
{
11
int
m
=
3
;
12
int
(*
a
[
m
])(
void
);
13
return
f
(
m
, &
a
);
14
}
15
16