Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
2a9ddfb903ae3baede7282348afae1f750905248
/
.
/
test
/
FrontendC
/
nested-functions.c
blob: bccbef3dbdd8655ed8562b3c4f8731d16ba805c5 [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -S %s -o - -fnested-functions
// PR1274
void
Bork
()
{
void
Fork
(
const
int
*
src
,
int
size
)
{
int
i
=
1
;
int
x
;
while
(
i
<
size
)
x
=
src
[
i
];
}
}
void
foo
(
void
*
a
){
inline
void
foo_bar
()
{
a
+=
1
;
}
}