repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
Parser
/
function-decls.c
blob
db9a98b391e602825a6411cc8a5113bbb7068103
1
/* RUN: %clang_cc1 %s -ast-print
2
*/
3
4
void
foo
() {
5
int
X
;
6
X
=
sizeof
(
void
(*(*)())());
7
X
=
sizeof
(
int
(*)(
int
,
float
, ...));
8
X
=
sizeof
(
void
(*(
int
arga
,
void
(*
argb
)(
double
Y
)))(
void
*
Z
));
9
}
10